-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.3 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@naria2/monorepo",
"version": "0.1.2",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel --filter !@naria2/app",
"dev:app": "pnpm -C packages/app dev",
"format": "turbo run format --parallel",
"naria2c": "node packages/naria2c/naria2c.mjs",
"release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm -r publish --access public",
"release:binary": "bumpp packages/binary/*/package.json --commit --push --no-tag && pnpm -r publish --access public",
"test:ci": "turbo run test:ci",
"typecheck": "turbo run typecheck",
"preversion": "turbo run test:ci",
"postversion": "turbo run build"
},
"devDependencies": {
"@naria2/node": "workspace:*",
"@types/cli-progress": "^3.11.6",
"@types/node": "^20.16.12",
"@types/webtorrent": "^0.109.8",
"@types/ws": "^8.5.12",
"bittorrent-tracker": "^11.1.2",
"bumpp": "latest",
"cli-progress": "^3.12.0",
"execa": "^9.4.0",
"naria2": "workspace:*",
"turbo": "^2.1.3",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.4.9",
"vitest": "^2.1.3",
"webtorrent": "^2.5.1",
"ws": "^8.18.0"
},
"packageManager": "pnpm@9.12.2",
"engines": {
"node": ">=v18.0.0"
}
}