forked from webpod/webpod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 945 Bytes
/
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
{
"name": "webpod",
"version": "1.0.0",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"webpod": "dist/src/cli.js"
},
"files": [
"dist/src"
],
"scripts": {
"build": "tsc",
"test": "npm run build && cd test && docker compose up --exit-code-from=webpod",
"uvu": "uvu -i .ts"
},
"dependencies": {
"chalk": "^5.2.0",
"indent-string": "^5.0.0",
"inquirer": "^9.2.7",
"minimist": "^1.2.8",
"node-fetch": "^3.3.1",
"open": "^9.1.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/minimist": "^1.2.2",
"@types/node": "^20.2.4",
"c8": "^7.14.0",
"typescript": "^5.0.4",
"uvu": "^0.5.6"
},
"author": "Anton Medvedev <[email protected]>",
"license": "MIT",
"homepage": "https://webpod.dev",
"description": "Self-hosted sites",
"repository": "webpod/webpod",
"keywords": [
"self-hosted"
]
}