-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 833 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 833 Bytes
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
{
"name": "@toon-format/monorepo",
"type": "module",
"version": "2.1.0",
"private": true,
"packageManager": "pnpm@10.30.3",
"scripts": {
"build": "pnpm -r --filter=./packages/** run build",
"automd": "automd",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm -r test",
"test:types": "tsc --noEmit",
"release": "bumpp -r"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@commitlint/types": "^20.4.3",
"@types/node": "^24.12.0",
"automd": "^0.4.3",
"bumpp": "^10.4.1",
"eslint": "^10.0.2",
"eslint-flat-config-utils": "^3.0.1",
"tsdown": "^0.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}