-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.41 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.41 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
97
98
99
100
101
102
103
104
{
"name": "create-frontend-component",
"version": "3.0.1",
"type": "module",
"description": "Framework-agnostic utility to scaffold frontend components by using custom templates",
"main": "dist/cli.js",
"bin": {
"create-frontend-component": "dist/cli.js"
},
"files": [
"dist",
"presets"
],
"scripts": {
"build": "tsc",
"test": "node --test --import tsx src/*.spec.ts",
"lint": "eslint cli.ts src/**/*.ts",
"lint:fix": "eslint --fix cli.ts src/**/*.ts",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"prepare": "husky install"
},
"keywords": [
"component generator",
"frontend",
"scaffolding",
"developer tools"
],
"lint-staged": {
"*.ts": "eslint --quiet --fix --max-warnings 1"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"author": "Alexander Noack <alexander.noack@diva-e.com>, Henning Schneider <henning.schneider@diva-e.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/diva-e/create-frontend-component.git"
},
"bugs": {
"url": "https://github.com/diva-e/create-frontend-component/issues"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.0",
"prompts": "^2.4.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.0",
"@types/prompts": "^2.4.9",
"eslint": "^9.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"standard-version": "^9.2.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}