-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.63 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
{
"name": "create-halo-plugin",
"version": "1.3.1",
"description": "Quickly create Halo plugin development templates",
"keywords": [
"halo",
"halo-plugin"
],
"homepage": "https://github.com/halo-dev/create-halo-plugin/tree/main/cli#readme",
"bugs": {
"url": "https://github.com/halo-dev/create-halo-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/halo-dev/create-halo-plugin.git"
},
"license": "GPL-3.0",
"author": {
"name": "Halo",
"url": "https://github.com/halo-dev"
},
"type": "module",
"bin": {
"create-halo-plugin": "index.js"
},
"files": [
"src/",
"template/",
"index.js",
"LICENSE",
"README.md",
"README.zh-CN.md"
],
"scripts": {
"build": "echo 'No build step required'",
"check": "biome check --write ./src",
"dev": "node index.js",
"release": "release-it",
"test": "echo 'No tests specified'"
},
"dependencies": {
"fs-extra": "^11.3.2",
"handlebars": "^4.7.8",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.4",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"release-it": "^19.0.6"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"engines": {
"node": ">=18.0.0"
},
"release-it": {
"git": {
"commit": true,
"tag": true,
"push": true
},
"github": {
"release": false
},
"npm": {
"publish": false
}
}
}