-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"type": "module",
"version": "4.1.0",
"private": true,
"packageManager": "pnpm@10.30.3",
"scripts": {
"dev": "pnpm -r run dev",
"build": "pnpm -r --filter '@genapi/*' run build",
"play": "pnpm -C playground run dev",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"lint": "eslint --cache .",
"typecheck": "pnpm -r run typecheck",
"test": "vitest",
"test:run": "vitest --run",
"test:coverage": "vitest run --coverage",
"automd": "pnpm --filter '@genapi/*' exec automd",
"release": "bumpp -r",
"prepare": "simple-git-hooks",
"install": "skills-manifest install"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:cli",
"@antfu/ni": "catalog:cli",
"@antfu/utils": "catalog:inlined",
"@types/node": "catalog:types",
"@vitest/coverage-v8": "catalog:testing",
"automd": "catalog:cli",
"bumpp": "catalog:cli",
"eslint": "catalog:cli",
"lint-staged": "catalog:cli",
"pnpm": "catalog:cli",
"publint": "catalog:cli",
"simple-git-hooks": "catalog:cli",
"skills": "catalog:root",
"skills-manifest": "catalog:root",
"tsdown": "catalog:cli",
"tsx": "catalog:cli",
"typescript": "catalog:cli",
"vite": "catalog:cli",
"vitest": "catalog:testing"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}