-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.72 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
65
66
67
{
"name": "@feature-sliced/cli",
"version": "1.0.0",
"type": "module",
"description": "Utility to quickly generate layers, slices, and segments from Feature-Sliced Design.",
"scripts": {
"build": "tsup src/main.ts --format esm --clean",
"watch": "npm run build -- --watch src",
"prepublishOnly": "npm run build",
"lint": "eslint --cache .",
"format": "prettier --write . --cache",
"check-formatting": "prettier --check . --cache",
"typecheck": "tsc --noEmit",
"test": "vitest run src",
"test-integration": "vitest run integration-tests",
"prepare": "husky install"
},
"dependencies": {
"commander": "^11.1.0",
"enquirer": "^2.4.1",
"simple-git": "^3.21.0",
"terminal-link": "^3.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@tsconfig/recommended": "^1.0.3",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.10.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"chalk": "^5.3.0",
"del": "^7.1.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^8.0.1",
"get-bin-path": "^11.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"mock-fs": "^5.2.0",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^1.2.0"
},
"bin": {
"fsd": "./dist/main.js"
},
"keywords": [
"feature-sliced",
"cli",
"generator",
"folders",
"layers",
"slices",
"segments"
],
"license": "ISC",
"homepage": "https://github.com/feature-sliced/cli",
"bugs": "https://github.com/feature-sliced/cli/issues",
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"package.json"
]
}