-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
29 lines (29 loc) · 851 Bytes
/
package.json
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
{
"type": "module",
"version": "0.4.2",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"play:dev": "pnpm -C playground run dev -- --open",
"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 package.json packages/*/package.json && pnpm -r publish --access public"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@antfu/ni": "^0.23.0",
"@types/node": "^22.9.0",
"bumpp": "^9.8.1",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"nanoevents": "^9.1.0",
"npm-run-all": "^4.1.5",
"pnpm": "^9.13.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}