-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 KB
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": "vite-template-starter",
"version": "1.0.2",
"description": "A vite-based front-end startup template generator.",
"author": "zuojt <zuojt2022@gmail.com> (https://github.com/Zuojiangtao)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Zuojiangtao/create-vite-starter.git"
},
"homepage": "https://github.com/Zuojiangtao/create-vite-starter#readme",
"keywords": [
"vue",
"react",
"nuxt",
"next",
"cli",
"template",
"starter"
],
"main": "./dist/index.js",
"files": [
"dist/index.js",
"template",
"locales"
],
"bin": {
"vite-template-starter": "./dist/index.js",
"vite-start": "./dist/index.js"
},
"engines": {
"node": "^14.18.0 || ^16.0.0 || >=18.0.0"
},
"packageManager": "pnpm@9.7.0",
"scripts": {
"dev": "pnpm run build --watch",
"build": "tsup",
"clean:lib": "rimraf node_modules",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"src/**/*.{ts,js,json,tsx,jsx,vue}": [
"prettier --write",
"eslint --cache --fix",
"eslint"
]
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@rushstack/eslint-patch": "^1.10.4",
"@types/ejs": "^3.1.5",
"@types/node": "^22.13.4",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "~8.6.0",
"@typescript-eslint/parser": "~8.6.0",
"chalk": "^5.4.1",
"ejs": "^3.1.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.1",
"prompts": "^2.4.2",
"rimraf": "~6.0.1",
"tsup": "~8.3.6",
"typescript": "~5.7.3"
}
}