1
0
Fork 1
mirror of https://example.com synced 2024-11-22 21:26:38 +09:00
firefish/packages/backend-rs/package.json

28 lines
685 B
JSON
Raw Normal View History

2023-07-20 04:17:05 +09:00
{
"name": "backend-rs",
2023-07-20 04:17:05 +09:00
"version": "0.0.0",
"main": "built/index.js",
"types": "built/index.d.ts",
"napi": {
2024-02-03 22:15:40 +09:00
"binaryName": "backend-rs"
2023-07-20 04:17:05 +09:00
},
"license": "MIT",
"devDependencies": {
2024-02-03 22:15:40 +09:00
"@napi-rs/cli": "3.0.0-alpha.36",
"ava": "6.1.1"
2023-07-20 04:17:05 +09:00
},
"ava": {
"timeout": "3m"
},
"scripts": {
"artifacts": "napi artifacts",
2024-02-03 22:15:40 +09:00
"build": "napi build --platform --release --output-dir ./built/",
"build:debug": "napi build --platform --output-dir ./built/",
2023-07-20 04:17:05 +09:00
"prepublishOnly": "napi prepublish -t npm",
"universal": "napi universal",
"version": "napi version",
2023-12-27 18:43:42 +09:00
"format": "cargo fmt --all --",
"lint": "cargo clippy --fix --allow-dirty --allow-staged && cargo fmt --all --"
2023-07-20 04:17:05 +09:00
}
}