hippofish/packages/backend-rs/package.json

19 lines
695 B
JSON
Raw Normal View History

{
"name": "backend-rs",
2023-06-22 18:28:36 +02:00
"version": "0.0.0",
"main": "built/index.js",
"types": "built/index.d.ts",
"license": "AGPL-3.0-only",
2023-06-22 18:28:36 +02:00
"napi": {
2024-06-22 21:13:16 +02:00
"binaryName": "backend-rs"
2023-06-22 18:28:36 +02:00
},
"devDependencies": {
"@napi-rs/cli": "3.0.0-alpha.62"
2023-06-22 18:28:36 +02:00
},
"scripts": {
"fetch": "cargo fetch --locked --manifest-path ../../Cargo.toml",
"build": "pnpm run fetch && napi build --features napi --no-const-enum --platform --release --output-dir ./built/ -- --frozen",
"build:debug": "napi build --features napi --no-const-enum --platform --output-dir ./built/ --dts-header '/* auto-generated by NAPI-RS */\n/* Do NOT edit this file manually */\n\ntype DateTimeWithTimeZone = Date;\n\ntype Json = any;\n\n'"
2023-06-22 18:28:36 +02:00
}
}