-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 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
52
53
54
{
"name": "tairo",
"type": "module",
"version": "2.0.0",
"private": true,
"packageManager": "pnpm@10.14.0",
"main": "./nuxt.config.ts",
"engines": {
"node": ">=22",
"pnpm": ">=8"
},
"workspaces": [
".demo",
".app",
"layers/*"
],
"scripts": {
"dev": "pnpm --filter=app dev",
"build": "pnpm --filter=app build",
"generate": "pnpm --filter=app generate",
"demo:dev": "pnpm --filter=demo dev",
"demo:build": "pnpm --filter=demo build",
"clean:all": "pnpm -r clean && rimraf .nuxt .output node_modules",
"test": "run-p test:*",
"test:tsc-demo": "pnpm --filter=demo typecheck",
"test:lint": "eslint --cache .",
"lint": "eslint --cache --fix ."
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"eslint": "9.33.0",
"eslint-plugin-format": "^1.0.1",
"lint-staged": "16.1.5",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@latest"
},
"patchedDependencies": {
"smooth-dnd@0.12.1": "patches/smooth-dnd@0.12.1.patch",
"nuxt-component-meta@0.13.1": "patches/nuxt-component-meta@0.13.1.patch"
}
},
"lint-staged": {
"*.(ts|vue)": [
"eslint --fix"
]
}
}