-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.14 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.14 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
{
"name": "generate-react-cli",
"version": "11.0.3",
"description": "A simple React CLI to generate components instantly and more.",
"author": "Armin Broubakarian",
"license": "MIT",
"repository": "https://github.com/arminbro/generate-react-cli",
"bugs": "https://github.com/arminbro/generate-react-cli/issues",
"keywords": [
"cli",
"react",
"build-tools",
"generate-react-cli"
],
"main": "bin/generate-react",
"bin": {
"generate-react": "bin/generate-react.js"
},
"type": "module",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"bin/",
"src/"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"browserslist": [
"maintained node versions"
],
"scripts": {
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"chalk": "5.6.2",
"commander": "14.0.3",
"fs-extra": "11.3.3",
"inquirer": "13.3.0",
"lodash": "4.17.23"
},
"devDependencies": {
"@antfu/eslint-config": "7.6.1",
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.0",
"eslint": "10.0.2",
"husky": "9.1.7",
"lint-staged": "16.3.1",
"semantic-release": "25.0.3"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0,
"always",
200
]
}
}
}