mirror of
https://example.com
synced 2024-11-22 15:26:38 +09:00
27 lines
685 B
JSON
27 lines
685 B
JSON
{
|
|
"name": "backend-rs",
|
|
"version": "0.0.0",
|
|
"main": "built/index.js",
|
|
"types": "built/index.d.ts",
|
|
"napi": {
|
|
"binaryName": "backend-rs"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "3.0.0-alpha.36",
|
|
"ava": "6.1.1"
|
|
},
|
|
"ava": {
|
|
"timeout": "3m"
|
|
},
|
|
"scripts": {
|
|
"artifacts": "napi artifacts",
|
|
"build": "napi build --platform --release --output-dir ./built/",
|
|
"build:debug": "napi build --platform --output-dir ./built/",
|
|
"prepublishOnly": "napi prepublish -t npm",
|
|
"universal": "napi universal",
|
|
"version": "napi version",
|
|
"format": "cargo fmt --all --",
|
|
"lint": "cargo clippy --fix --allow-dirty --allow-staged && cargo fmt --all --"
|
|
}
|
|
}
|