-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.22 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.22 KB
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
{
"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 --tag latest",
"publish:rc": "nx release publish --tag rc",
"changeset": "changeset"
},
"keywords": [],
"author": "gronxb",
"repository": "https://github.com/gronxb/webview-bridge",
"license": "MIT",
"devDependencies": {
"@babel/runtime": "^7.25.0",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.8",
"@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.4.0",
"typescript": "^5.6.2"
},
"packageManager": "pnpm@10.30.1"
}