-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.38 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
{
"name": "commoners-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"test": "vitest",
"coverage": "vitest run --coverage",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs",
"cleanup": "pnpm run clean:modules && pnpm run clean:dist",
"clean:modules": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"clean:dist": "rm -rf dist && pnpm -r exec rm -rf dist",
"publish": "pnpm publish -F \"./packages/**\" --access public",
"demo": "commoners tests/demo",
"demo:build": "commoners build tests/demo",
"demo:launch": "commoners launch tests/demo"
},
"devDependencies": {
"@commoners/bluetooth": "0.0.55",
"@commoners/custom-protocol": "0.0.55",
"@commoners/serial": "0.0.55",
"@commoners/solidarity": "0.0.59",
"@commoners/splash-screen": "0.0.55",
"@commoners/testing": "0.0.59",
"@commoners/windows": "0.0.58",
"@vitest/coverage-v8": "^2.0.3",
"search-insights": "^2.15.0",
"commoners": "0.0.59",
"vite": "^5.3.4",
"vitepress": "^1.3.1",
"vitest": "^2.0.3"
},
"pnpm": {
"overrides": {
"electron-updater@<=6.3.0-alpha.5": ">=6.3.0-alpha.6"
}
},
"packageManager": "[email protected]+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276"
}