forked from david-plugge/typed-pocketbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 KB
/
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
48
49
50
51
{
"name": "@tigawanna/typed-pocketbase",
"version": "0.0.6",
"description": "Add types to the PocketBase JavaScript SDK",
"author": "Tigawanna",
"repository": {
"type": "git",
"url": "https://github.com/tigawanna/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": "dist/codegen/cli.js",
"scripts": {
"build": "tsup",
"lint": "tsc",
"test": "vitest",
"format": "prettier --write .",
"ci:version": "changeset version",
"ci:release": "changeset publish",
"release": "changeset publish --no-git-checks",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm"
},
"dependencies": {
"sade": "^1.8.1"
},
"peerDependencies": {
"pocketbase": ">=0.23.0 <0.27.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.13",
"dotenv": "^16.4.5",
"pocketbase": "^0.22.0",
"prettier": "^3.2.4",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^2.1.2"
}
}