-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
{
"name": "skipsetup",
"version": "1.0.1",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=cli",
"test": "turbo run test --coverage",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"publish:cli": "turbo run build --filter=cli && cd apps/cli && npm publish --access public",
"prepare": "husky install"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"husky": "^8.0.0",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.0",
"turbo": "^2.1.3",
"typescript": "^5.5.4",
"vitest": "^2.0.0"
},
"packageManager": "pnpm@9.12.2",
"lint-staged": {
"**/*.{ts,tsx,js,jsx,json,md,yml}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"rimraf": "^6.0.1"
},
"files": [
"dist",
"manifest.json",
"src"
]
}