-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 KB
/
package.json
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
{
"name": "atomic-gen",
"version": "2.0.0",
"description": "A CLI tool for automating the generation of React components and their corresponding Storybook stories using customizable templates.",
"author": "yudwig",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yudwig/atomic-gen.git"
},
"bugs": {
"url": "https://github.com/yudwig/atomic-gen/issues"
},
"homepage": "https://github.com/yudwig/atomic-gen#readme",
"type": "module",
"bin": {
"atomic-gen": "dist/cli.js"
},
"scripts": {
"build": "tsc --module esnext --outDir dist",
"start": "yarn build && node dist/cli.js",
"format": "eslint && yarn prettier --single-quote src --write",
"dev": "yarn build && node dist/cli.js --config=./sample-config.yaml --base-dir=./tmp/test/"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/mustache": "^4.2.5",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"dependencies": {
"minimatch": "^10.0.1",
"mustache": "^4.2.0",
"picocolors": "^1.0.1",
"yaml": "^2.5.0"
}
}