forked from gronxb/webview-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 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": "@webview-bridge/root",
"private": true,
"version": "1.0.0",
"scripts": {
"packages:publish": "pnpm clear && pnpm --filter './packages/**' publish",
"build": "nx run-many --target=build --projects=packages/*",
"build:dev": "nx run-many --target=build --projects=packages/* --watch",
"test:type": "nx run-many --target=test:type --all",
"lint": "nx run-many --target=lint --projects=packages/*",
"docs:build": "nx docs:build @webview-bridge/docs",
"clear": "rimraf --glob **/dist",
"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"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/runtime": "^7.25.0",
"@biomejs/biome": "^1.9.4",
"@nx/js": "^20.0.6",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.40",
"nx": "20.0.5",
"rimraf": "^5.0.5",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@webview-bridge/types": "workspace:*",
"@webview-bridge/utils": "workspace:*",
"@webview-bridge/web": "workspace:*",
"@webview-bridge/react": "workspace:*",
"@webview-bridge/react-native": "workspace:*"
}
}
}