napi-rs/examples/napi/package.json
2022-10-23 23:03:18 +08:00

19 lines
806 B
JSON

{
"name": "examples",
"private": true,
"version": "0.0.0",
"main": "./index.node",
"types": "./index.d.ts",
"scripts": {
"build": "node ../../cli/scripts/index.js build --js false",
"build-aarch64": "node ../../cli/scripts/index.js build --js false --target aarch64-unknown-linux-gnu",
"build-armv7": "node ../../cli/scripts/index.js build --js false --target armv7-unknown-linux-gnueabihf",
"build-i686": "node ../../cli/scripts/index.js build --js false --target i686-pc-windows-msvc",
"build-i686-release": "node ../../cli/scripts/index.js build --js false --release --target i686-pc-windows-msvc",
"build-release": "node ../../cli/scripts/index.js build --js false --release"
},
"dependencies": {
"@types/lodash": "^4.14.186",
"lodash": "^4.17.21"
}
}