-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.58 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
{
"name": "create-mine",
"private": false,
"version": "1.7.0",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"type": "module",
"bin": {
"create-mine": "bin/create-mine.js",
"me": "bin/create-mine.js"
},
"author": {
"name": "biaov",
"email": "biaov@qq.com",
"url": "https://biaov.cn"
},
"description": "一个用于初始化项目的脚手架 👍",
"scripts": {
"start": "npm run dev",
"dev": "npm run build -- --watch",
"build": "vite build",
"prettier": "prettier --write '**/*.{js,ts,md,json}'",
"ncu": "ncu --configFileName .ncurc.json && npm i",
"tag": "node scripts/tag"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"engines": {
"node": ">=20.12"
},
"keywords": [
"cli",
"init",
"vite",
"typescript",
"template"
],
"repository": {
"type": "git",
"url": "https://github.com/biaov/create-mine.git"
},
"homepage": "https://github.com/biaov/create-mine.git",
"bugs": {
"url": "https://github.com/biaov/create-mine/issues"
},
"license": "ISC",
"contributors": [
{
"name": "biaov",
"email": "biaov@qq.com"
}
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"download-git-repo": "^3.0.2",
"inquirer": "^11.0.2",
"log-symbols": "^7.0.0",
"ora": "^8.1.0",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@types/update-notifier": "^6.0.8",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vite": "^5.4.6"
}
}