-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 938 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "dependency-check-updates",
"version": "0.1.0",
"private": true,
"description": "dependency-check-updates — multi-ecosystem dependency check & update tool",
"scripts": {
"build": "cargo build --release && bun --workspaces run build && cd bridge/python && maturin build --release",
"build:dev": "cargo build && cd bridge/node && bun x napi build --platform && cd ../.. && cd bridge/python && maturin develop",
"lint": "cargo clippy -- -D warnings && cargo fmt --check && bun --workspaces lint",
"lint:fix": "cargo fmt && cargo clippy --fix --allow-dirty -- -D warnings",
"test": "cargo test && bun --workspaces run test",
"check": "bun run lint && bun run test",
"clean": "cargo clean",
"run": "cargo run -p dependency-check-updates-cli --",
"run:release": "cargo run -p dependency-check-updates-cli --release --"
},
"workspaces": [
"bridge/node"
],
"license": "MIT"
}