-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 2.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "gobot",
"version": "1.0.0-alpha.41",
"description": "Install and run most any binary app as an npm package dependency.",
"repository": "github:benallfree/gobot",
"type": "module",
"main": "./dist/api.js",
"bin": {
"gobot": "./dist/cli.js"
},
"types": "dist/api.d.ts",
"scripts": {
"plop": "./plop/run.ts --dest=.",
"watch": "tsx -w src/cli.ts ",
"dev": "npm run plop build gobot && node ./dist/cli.js",
"test": "npm run plop test",
"docs": "typedoc && prettier -w docs",
"lint": "prettier -c .",
"lint:fix": "prettier -w .",
"verdaccio:serve": "verdaccio -c verdaccio.config.yaml -l 127.0.0.1:4873",
"verdaccio:login": "npm-cli-login -u user -p password -e [email protected] -r http://test.gobot.lvh.me:4873"
},
"keywords": [
"pocketbase",
"pockethost"
],
"author": {
"name": "Ben Allfree",
"url": "https://github.com/benallfree"
},
"license": "ISC",
"dependencies": {
"@s-libs/micro-dash": "^17.1.0",
"bottleneck": "^2.19.5",
"commander": "^12.0.0",
"decompress": "^4.2.1",
"decompress-bzip2": "^4.0.0",
"decompress-gz": "^0.0.1",
"decompress-tar": "4.1.1",
"decompress-tarbz2": "^4.1.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"env-paths": "^3.0.0",
"fast-safe-stringify": "^2.1.1",
"file-type": "^19.0.0",
"find-up": "^7.0.0",
"glob": "^10.3.10",
"is-stream": "^4.0.1",
"json-stringify-safe": "^5.0.1",
"lzma-native": "^8.0.6",
"markdown-table": "^3.0.3",
"node-fetch": "^3.3.2",
"rimraf": "^5.0.5",
"semver": "^7.6.0",
"table": "^6.8.2",
"tar-stream": "1.6.2",
"tmp": "^0.2.3",
"unbzip2-stream": "^1.4.3"
},
"devDependencies": {
"@types/tmp": "^0.2.6",
"@types/decompress": "^4.2.7",
"@types/diff": "^5.0.9",
"@types/find-package-json": "^1.2.6",
"@types/json-stringify-safe": "^5.0.3",
"@types/lzma-native": "^4.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.28",
"@types/semver": "^7.5.8",
"@types/tar-stream": "1.6.2",
"@types/unbzip2-stream": "^1.4.3",
"@verdaccio/types": "^10.8.0",
"boolean": "^3.2.0",
"colors": "^1.4.0",
"concurrently": "^8.2.2",
"diff": "^5.2.0",
"exit-hook": "^4.0.0",
"filenamify": "^6.0.0",
"find-package-json": "^1.2.0",
"fx": "^31.0.0",
"minimist": "^1.2.8",
"npm-cli-login": "^1.0.0",
"plop": "^4.0.1",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"run-if-changed": "^0.0.9",
"sharp": "^0.33.2",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"type-fest": "^4.14.0",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.3",
"verdaccio": "^5.29.2",
"yaml": "^2.4.1"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}