-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
{
"name": "create-fsd-vite",
"version": "1.2.1",
"description": "",
"type": "module",
"main": "bin/index.js",
"scripts": {
"create": "create vite@latest",
"lint": "eslint ./ --ext .js",
"lint-fix": "run lint --fix",
"prettier": "prettier --write ./**/*.js",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"keywords": [
"cli",
"Vite",
"Feature-Sliced Design",
"FSD"
],
"repository": {
"type": "git",
"url": "https://github.com/tuddev/create-fsd-vite.git"
},
"author": "tuddev",
"license": "ISC",
"dependencies": {
"child_process": "^1.0.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"fs": "^0.0.1-security",
"iconv-lite": "^0.6.3",
"lint-staged": "^13.2.2",
"log-update": "^5.0.1",
"path": "^0.12.7"
},
"lint-staged": {
"**/*.{js}": [
"npm run lint"
],
"**/*.{js,md}": [
"prettier --write"
]
},
"bin": {
"create-fsd-vite": "./bin/index.js"
},
"devDependencies": {
"husky": "^8.0.0"
}
}