-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.44 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
55
56
57
58
59
60
61
62
63
64
{
"name": "create-start-ui",
"description": "Scaffold a new Start-UI project",
"version": "0.6.0",
"license": "MIT",
"type": "module",
"bin": {
"create-start-ui": "index.js"
},
"exports": "./index.js",
"author": {
"name": "Renan Decamps",
"email": "renan.decamps@gmail.com",
"url": "https://github.com/decampsrenan"
},
"keywords": [
"create-start-ui",
"start-ui"
],
"bugs": {
"url": "https://github.com/bearstudio/create-start-ui/issues"
},
"homepage": "https://github.com/bearstudio/create-start-ui#readme",
"files": [
"index.js",
"app",
"assets/startui-logo.png"
],
"scripts": {
"prepare": "husky install",
"pretty": "prettier -w ./**/*.{js,json}",
"lint": "eslint . --fix"
},
"dependencies": {
"chalk": "5.3.0",
"cli-alerts": "1.2.2",
"cli-handle-error": "4.4.0",
"cli-handle-unhandled": "1.1.1",
"execa": "8.0.1",
"fs-extra": "11.1.1",
"ky": "1.0.1",
"meow": "12.1.1",
"ora": "7.0.1",
"tar": "6.2.0",
"tempy": "3.1.0",
"terminal-image": "2.0.0",
"terminal-link": "3.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/node": "20.8.2",
"eslint": "8.50.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.3"
},
"lint-staged": {
"*.{js,json}": "prettier --write",
"*.js": "eslint --cache --fix"
},
"engines": {
"node": ">=16"
}
}