-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
47 lines (47 loc) · 1.58 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
43
44
45
46
47
{
"name": "@hot-updater/root",
"private": true,
"description": "React Native OTA solution for self-hosted",
"keywords": [],
"license": "MIT",
"scripts": {
"biome": "biome format packages/** plugins/** --write",
"biome:check": "biome check packages/** plugins/**",
"clear": "rimraf --glob **/dist .nx",
"test": "vitest",
"build": "nx run-many --target=build --projects=packages/*,plugins/*",
"build:dev": "nx run-many --target=build --projects=packages/*,plugins/* --watch",
"test:type": "nx run-many --target=test:type --all",
"release:test": "nx release --dry-run",
"release": "pnpm clear && pnpm build && nx release --skip-publish",
"publish:all": "nx release publish",
"publish:rc": "nx release publish --tag rc"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@nx/js": "^20.3.0",
"@rslib/core": "^0.4.0",
"nx": "20.3.0",
"rimraf": "^5.0.7",
"tsup": "^8.3.6",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"hot-updater": "workspace:*",
"@hot-updater/console": "workspace:*",
"@hot-updater/plugin-core": "workspace:*",
"@hot-updater/core": "workspace:*",
"@hot-updater/aws": "workspace:*",
"@hot-updater/metro": "workspace:*",
"@hot-updater/react-native": "workspace:*",
"@hot-updater/postgres": "workspace:*",
"@hot-updater/supabase": "workspace:*",
"@hot-updater/cloudflare": "workspace:*",
"@hot-updater/js": "workspace:*",
"@hot-updater/mock": "workspace:*"
}
},
"packageManager": "pnpm@9.15.4"
}