rs-diff/package.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2020-08-14 08:11:58 +00:00
{
2020-08-27 03:56:54 +00:00
"name": "@mtfos/rs-diff",
2020-09-11 05:10:24 +00:00
"version": "0.0.6",
2020-08-14 08:11:58 +00:00
"description": "Template project for writing node package with napi-rs",
2020-08-25 03:38:13 +00:00
"author": "Jay <jay@trj.tw>",
2020-08-14 08:11:58 +00:00
"main": "index.js",
2020-08-25 03:10:05 +00:00
"repository": "https://git.trj.tw/nodejs/rs-diff.git",
2020-08-14 08:11:58 +00:00
"license": "MIT",
2020-09-11 04:11:54 +00:00
"keywords": [
"napi-rs",
"NAPI",
"N-API",
"Rust",
"node-addon",
"node-addon-api"
],
"files": [
"index.d.ts",
"index.js"
],
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64"
],
2020-08-14 08:11:58 +00:00
"engines": {
"node": ">= 8.9"
},
"scripts": {
2020-09-14 08:01:08 +00:00
"build": "cargo build --release && napi build --platform --release",
2020-09-11 04:11:54 +00:00
"build:debug": "cargo build && napi build --platform .",
2020-08-14 08:11:58 +00:00
"test": "ava",
2020-09-11 05:18:42 +00:00
"publish:linux": "cross-env PLATFORM=linux node scripts/publish.js",
"publish:darwin": "cross-env PLATFORM=darwin node scripts/publish.js",
2020-08-14 08:11:58 +00:00
"version": "node ./scripts/version.js"
},
"devDependencies": {
"ava": "^3.11.1",
2020-09-11 05:18:42 +00:00
"cross-env": "^7.0.2",
2020-09-11 04:11:54 +00:00
"napi-rs": "^0.3.7",
2020-08-14 08:11:58 +00:00
"typescript": "^3.9.7"
},
"dependencies": {
2020-09-11 04:11:54 +00:00
"@node-rs/helper": "^0.4.0"
2020-08-25 03:38:13 +00:00
},
"optionalDependencies": {
2020-09-11 05:18:42 +00:00
"@mtfos/rs-diff-darwin": "^0.0.6",
"@mtfos/rs-diff-linux": "^0.0.6"
2020-08-14 08:11:58 +00:00
}
2020-09-14 03:24:45 +00:00
}