-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 726 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 726 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
{
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.28.0",
"scripts": {
"play:dev": "pnpm -C playground run dev",
"play:build": "pnpm -C playground run build",
"js:dev": "pnpm run -r --parallel --filter='./packages/*' dev",
"js:build": "pnpm run -r --filter='./packages/*' build",
"dev": "nr play:dev",
"build": "nr js:build",
"lint": "eslint .",
"release": "bumpp -r"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@antfu/ni": "^28.1.0",
"@types/node": "^25.0.7",
"bumpp": "^10.3.2",
"eslint": "^9.39.2",
"nanoevents": "^9.1.0",
"pnpm": "^10.28.0",
"tsdown": "^0.18.4",
"typescript": "^5.9.3"
}
}