napi-rs/examples/napi/package.json

20 lines
806 B
JSON
Raw Normal View History

{
2022-01-24 12:33:51 +09:00
"name": "examples",
"private": true,
"version": "0.0.0",
"main": "./index.node",
2021-10-01 15:41:52 +09:00
"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.189",
"lodash": "^4.17.21"
}
}