-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 964 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "typed-pocketbase",
"version": "0.1.1",
"description": "Add types to the PocketBase JavaScript SDK",
"author": "David Plugge",
"repository": {
"type": "git",
"url": "https://github.com/david-plugge/typed-pocketbase"
},
"license": "MIT",
"keywords": [
"pocketbase",
"types"
],
"files": [
"dist",
"src"
],
"type": "module",
"main": "./dist/client/index.js",
"module": "./dist/client/index.js",
"types": "./dist/client/index.d.ts",
"bin": {
"typed-pocketbase": "dist/codegen/cli.js"
},
"scripts": {
"build": "tsup",
"lint": "tsc",
"format": "prettier --write .",
"ci:version": "changeset version",
"ci:release": "changeset publish"
},
"peerDependencies": {
"pocketbase": "^0.21.0"
},
"dependencies": {
"sade": "^1.8.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.13",
"pocketbase": "^0.21.0",
"prettier": "^3.2.4",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}