-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.53 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.6.0",
"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 ./test",
"dev": "node index.js",
"release": "release-it",
"test": "node --test test/cli.test.js test/project.test.js"
},
"dependencies": {
"fs-extra": "^11.3.2",
"handlebars": "^4.7.9",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"release-it": "^19.0.6"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.0.0"
},
"release-it": {
"git": {
"commit": true,
"tag": true,
"push": true
},
"github": {
"release": false
},
"npm": {
"publish": false
}
}
}