-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 943 Bytes
/
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
{
"name": "p4-analyzer-sources",
"description": "Package sources for the P4 Analyzer.",
"private": true,
"publisher": "P4.org",
"scripts": {
"prebuild": "cargo build && wasm-pack build --target nodejs crates/p4-analyzer-wasm",
"build": "run-script-os",
"build:nix": "nx run-many --target=build-nix --all",
"build:windows": "nx run-many --target=build-windows --all",
"package": "nx run-many --target=package --all",
"preset-version": "tsc -p ./tools",
"set-version": "nx run-many --target=set-version --all --verbose"
},
"workspaces": {
"packages": [
"./packages/*"
]
},
"dependencies": {
"vscode-languageclient": "~8.0"
},
"devDependencies": {
"@nrwl/cli": "~15.5",
"@nrwl/workspace": "~15.5",
"@types/node": "^16",
"@types/vscode": "^1",
"esbuild": "latest",
"run-script-os": "^1.1.6",
"typescript": "^4",
"@vscode/vsce": "^2.19.0",
"@types/webpack": "~5.28",
"@iarna/toml": "~2.2"
}
}