-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.39 KB
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
52
53
54
55
56
57
{
"author": "fromsko",
"dependencies": {
"pocketbase": "^0.26.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^24.0.10",
"ajv": "8",
"ajv-draft-04": "^1.0.0",
"eslint": "^8.57.1",
"np": "^10.2.0",
"prettier": "^3.5.3",
"terser": "^5.44.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vite": "^7.0.3",
"vite-plugin-dts": "^4.5.4"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"pocketbase",
"bun",
"utils"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"name": "pocketbase-tools",
"peerDependencies": {
"typescript": "^5.8.3"
},
"scripts": {
"build": "bun run format && tsc && vite build",
"build:prod": "bun run format && tsc && vite build --mode production",
"build:dev": "bun run format && tsc && vite build --mode development",
"docs": "typedoc --out docs src",
"format": "prettier --write \"src/**/*.ts\" \"*.ts\" \"*.json\"",
"format:check": "prettier --check \"src/**/*.ts\" \"*.ts\" \"*.json\"",
"prepack": "bun run build:prod",
"setup": "bun i",
"test": "bun test",
"test:watch": "bun test --watch"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "0.1.20"
}