-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
45
46
47
48
49
50
51
52
53
54
{
"name": "@lr0pb/component",
"version": "0.4.2",
"license": "MIT",
"author": "lr0pb",
"description": "⚡ Bootstrap React component folder structure using CLI",
"homepage": "https://github.com/lr0pb/component#readme",
"repository": {
"type": "git",
"url": "https://github.com/lr0pb/component"
},
"bugs": {
"url": "https://github.com/lr0pb/component/issues"
},
"keywords": [
"component cli",
"new component",
"create component",
"bootstrap component",
"typescript",
"react"
],
"bin": {
"c": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsc && copyfiles -E templates/**/* dist/",
"dev": "tsc --watch",
"format": "prettier --write --cache .",
"prepublishOnly": "npm run build",
"pub": "npm publish --access public"
},
"dependencies": {
"@inkjs/ui": "^1.0.0",
"ink": "^4.1.0",
"open": "^9.1.0",
"pastel": "^2.0.0",
"react": "^18.2.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/node": "^20.3.1",
"@types/react": "^18.2.12",
"copyfiles": "^2.4.1",
"prettier": "^2.8.7",
"typescript": "^5.1.3"
}
}