-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.24 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.24 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@greenarmor/cli-boilerplate",
"version": "2.5.1",
"description": "A powerful Node.js CLI boilerplate with semantic-release, commitlint, husky, GitHub Actions, and modular generators for components, pages, hooks, layouts, services, styles, and tests.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/greenarmor/cli-boilerplate.git"
},
"bin": {
"@greenarmor/cli-boilerplate": "./scripts/create-cli.js",
"cli": "./bin/index.js",
"boiler-cli": "./bin/index.js",
"cli-bump": "./scripts/bump-cli.js",
"cli-create": "./scripts/create-cli.js"
},
"scripts": {
"start": "node ./bin/index.js",
"changelog": "node scripts/generate-changelog.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"dev:check": "node scripts/check-secrets.js",
"chat": "NODE_ENV=development boiler-cli chat"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"conventional-changelog-angular": "^8.0.0",
"conventional-changelog-cli": "^5.0.0",
"dotenv": "^16.4.5",
"express-rate-limit": "^8.0.1",
"inquirer": "^12.9.0"
},
"author": "Green <greenarmor@live.com>",
"license": "MIT",
"keywords": [
"cli",
"boilerplate",
"semantic-release",
"automation",
"starter",
"generator",
"component",
"page",
"hook",
"layout",
"service",
"style",
"test"
],
"files": [
"bin/",
"features/",
"scripts/",
"README.md",
"LICENSE",
"templates/"
],
"sideEffects": false,
"exports": {
".": {
"default": "./bin/index.js"
}
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"jest": {
"testEnvironment": "node",
"extensionsToTreatAsEsm": [
".jsx"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/templates/"
]
},
"cli": {
"scanners": {
"npm": "./scripts/scanners/npm.js",
"zap": "./scripts/scanners/zap.js"
}
},
"scan": {
"target": "."
},
"devDependencies": {
"conventional-changelog": "^7.1.1",
"jest": "^29.7.0"
},
"overrides": {
"@conventional-changelog/git-client": "^2.5.1"
}
}