-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
72 lines (72 loc) · 1.55 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
{
"name": "nuxthub",
"version": "0.8.7",
"license": "Apache-2.0",
"description": "Interface with the NuxtHub platform from the command line.",
"keywords": [
"nuxt",
"nuxthub",
"cli"
],
"repo": "nuxt-hub/cli",
"type": "module",
"bin": {
"nuxthub": "./src/index.mjs",
"nuxt-hub": "./src/index.mjs"
},
"exports": {
"./internal": "./src/internal.mjs"
},
"files": [
"src/"
],
"scripts": {
"lint": "eslint .",
"nuxthub": "./src/index.mjs",
"prepublishOnly": "pnpm lint",
"release": "release-it"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"c12": "^2.0.1",
"ci-info": "^4.1.0",
"citty": "^0.1.6",
"confbox": "^0.1.8",
"consola": "^3.4.0",
"dns2": "^2.1.0",
"dotenv": "^16.4.7",
"execa": "^9.5.2",
"get-port-please": "^3.1.2",
"gzip-size": "^7.0.0",
"h3": "^1.14.0",
"listhen": "^1.9.0",
"load-json-file": "^7.0.1",
"mime": "^4.0.6",
"ofetch": "^1.4.1",
"open": "^10.1.0",
"ora": "^8.1.1",
"pathe": "^2.0.2",
"pretty-bytes": "^6.1.1",
"rc9": "^2.1.2",
"signal-exit": "^4.1.0",
"ufo": "^1.5.4",
"unstorage": "^1.14.4",
"update-notifier": "^7.3.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.7.5",
"eslint": "^9.19.0",
"release-it": "^18.1.2"
},
"release-it": {
"git": {
"commitMessage": "chore(release): release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
}
},
"packageManager": "[email protected]"
}