-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 1.01 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
{
"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 --all-targets --all-features -- -D warnings && cargo fmt --check && bun --workspaces run 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 --",
"run:release": "cargo run -p dependency-check-updates --release --",
"prepare": "husky"
},
"workspaces": [
"bridge/node"
],
"license": "MIT",
"devDependencies": {
"husky": "^9.1.7"
}
}