forked from webpod/webpod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"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",
"test:unit": "node ./dist/test/all.test.js",
"test:cov": "npx c8 --reporter=html -x test npm run test:unit"
},
"dependencies": {
"chalk": "^5.3.0",
"indent-string": "^5.0.0",
"inquirer": "^9.2.23",
"minimist": "^1.2.8",
"node-fetch-native": "^1.6.4",
"open": "^10.1.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/minimist": "^1.2.5",
"@types/node": "^22.7.4",
"c8": "^10.1.2",
"typescript": "^5.6.2"
},
"author": "Anton Medvedev <[email protected]>",
"license": "MIT",
"homepage": "https://webpod.dev",
"description": "Self-hosted sites",
"repository": {
"type": "git",
"url": "git+https://github.com/webpod/webpod.git"
},
"keywords": [
"webpod",
"self-hosted"
]
}