-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.19 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
{
"name": "start-nuxt3",
"type": "module",
"version": "0.2.2",
"description": "The fast and easy way to start a Nuxt3 project",
"author": "kurt-liao",
"license": "MIT",
"homepage": "https://github.com/kurt-liao/start-nuxt3#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kurt-liao/start-nuxt3.git"
},
"bugs": {
"url": "https://github.com/kurt-liao/start-nuxt3/issues"
},
"keywords": [
"nuxt",
"nuxt3",
"nuxt3-starter",
"starter",
"template"
],
"bin": {
"start-nuxt3": "out.cjs"
},
"files": [
"out.cjs",
"template"
],
"engines": {
"node": "^14.18.0 || >= 16.0.0"
},
"scripts": {
"build": "node ./scripts/build.mjs",
"lint": "eslint .",
"lint.fix": "eslint . --fix",
"prepare": "husky install"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.11.7",
"esbuild": "^0.15.12",
"eslint": "^8.26.0",
"fs-extra": "^11.0.0",
"gradient-string": "^2.0.2",
"husky": "^8.0.0",
"kolorist": "^1.6.0",
"minimist": "^1.2.7",
"mustache": "^4.2.0",
"prompts": "^2.4.2",
"typescript": "^4.8.4"
}
}