-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 845 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 845 Bytes
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
{
"name": "@enokas/pb_cli",
"version": "1.1.3",
"description": "PocketBase admin CLI tool",
"type": "module",
"main": "dist/index.js",
"bin": {
"pb_cli": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"pocketbase",
"cli",
"admin",
"database"
],
"author": "Abdramane Sakone",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2",
"pocketbase": "^0.20.1"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/node-fetch": "^2.6.12",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}