-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.11 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.11 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
58
59
60
61
{
"name": "@fadlee/pocketbase-bin",
"version": "1.0.0",
"description": "PocketBase binary wrapper with automatic latest version detection",
"main": "bin/runner.js",
"bin": {
"pocketbase": "bin/runner.js"
},
"scripts": {
"test": "node bin/runner.js --help",
"start": "node bin/runner.js serve"
},
"files": [
"bin/",
"lib/",
"README.md"
],
"keywords": [
"pocketbase",
"database",
"backend",
"sqlite",
"latest",
"auto-update",
"binary",
"wrapper",
"cli",
"cross-platform"
],
"author": {
"name": "Fadlee",
"email": "fad.lee@hotmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fadlee/pocketbase-bin.git"
},
"bugs": {
"url": "https://github.com/fadlee/pocketbase-bin/issues"
},
"homepage": "https://github.com/fadlee/pocketbase-bin#readme",
"publishConfig": {
"access": "public"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"adm-zip": "^0.5.16"
}
}