-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 900 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
{
"name": "sonda-repo",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.20",
"pnpm": ">=9.7"
},
"scripts": {
"test": "pnpm -r --stream run test",
"build": "pnpm -r --stream run build",
"restore": "pnpm run restore:sonda && pnpm run restore:unplugin-sourcemaps",
"restore:sonda": "cd packages/sonda && clean-package restore",
"restore:unplugin-sourcemaps": "cd packages/unplugin-sourcemaps && clean-package restore",
"release": "pnpm run build && changeset publish && pnpm run restore"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.9",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-swc": "^0.4.0",
"@types/node": "^22.8.6",
"clean-package": "^2.2.0",
"pkg-pr-new": "^0.0.30",
"rollup": "^4.24.3",
"typescript": "^5.6.3"
}
}