napi-rs/package.json

113 lines
4 KiB
JSON
Raw Normal View History

2018-04-28 17:26:38 +09:00
{
"name": "napi-rs",
"version": "0.0.0",
2018-05-01 15:17:51 +09:00
"description": "A minimal library for building compiled Node add-ons in Rust.",
2021-12-10 17:55:55 +09:00
"workspaces": [
2022-01-24 12:33:51 +09:00
"bench",
2021-12-10 17:55:55 +09:00
"cli",
"triples",
"memory-testing",
2022-01-24 12:33:51 +09:00
"examples/napi",
"examples/napi-compat-mode",
"examples/binary"
2021-12-10 17:55:55 +09:00
],
2018-04-28 17:26:38 +09:00
"repository": {
"type": "git",
"url": "git@github.com:napi-rs/napi-rs.git"
2018-04-28 17:26:38 +09:00
},
"license": "MIT",
"scripts": {
"bench": "cross-env TS_NODE_PROJECT='./bench/tsconfig.json' node -r ts-node/register/transpile-only bench/bench.ts",
2021-11-19 15:58:21 +09:00
"build": "tsc -p tsconfig.json -m esnext && yarn bundle && shx chmod 777 cli/scripts/index.js && node -r ts-node/register/transpile-only ./generate-triple-list.ts",
2022-01-24 12:33:51 +09:00
"build:bench": "yarn workspace bench build",
"build:memory": "yarn workspace memory-testing build",
"build:test": "yarn workspace compat-mode-examples build && yarn workspace examples build",
"build:test:asan": "yarn workspace compat-mode-examples build --cargo-flags='-Zbuild-std' && yarn workspace examples build --cargo-flags='-Zbuild-std'",
"build:test:aarch64": "yarn workspace compat-mode-examples build-aarch64 && yarn workspace examples build-aarch64",
"build:test:android": "yarn workspace compat-mode-examples build --target aarch64-linux-android && yarn workspace examples build --target aarch64-linux-android",
"build:test:android:armv7": "yarn workspace compat-mode-examples build --target armv7-linux-androideabi && yarn workspace examples build --target armv7-linux-androideabi",
"build:test:armv7": "yarn workspace compat-mode-examples build-armv7 && yarn workspace examples build-armv7",
2022-10-24 00:03:18 +09:00
"bundle": "rollup -c rollup.config.mjs",
2022-02-10 20:00:38 +09:00
"format": "run-p format:prettier format:rs format:toml",
2021-12-10 17:55:55 +09:00
"format:prettier": "prettier . -w",
"format:rs": "cargo fmt",
2022-02-10 20:00:38 +09:00
"format:toml": "taplo format",
2021-05-28 19:50:16 +09:00
"lint": "eslint -c .eslintrc.yml .",
2021-02-22 16:39:50 +09:00
"prepublishOnly": "npm run build && pinst --disable",
"test": "ava \"./examples/napi/**/*.ts\" && ava --no-worker-threads \"./examples/napi-compat-mode/**/*.ts\" && ava \"./cli/**/*.ts\"",
2022-05-10 18:29:43 +09:00
"test:electron": "electron examples/napi/electron.js",
"test:macro": "cargo test -p napi-examples",
2021-05-28 19:50:16 +09:00
"test:memory": "node memory-testing/index.mjs",
2021-02-22 16:39:50 +09:00
"postinstall": "husky install",
"postpublish": "pinst --enable"
},
2018-04-28 17:26:38 +09:00
"bugs": {
2020-07-16 13:43:09 +09:00
"url": "https://github.com/napi-rs/napi-rs/issues"
2018-04-28 17:26:38 +09:00
},
2020-07-16 13:43:09 +09:00
"homepage": "https://github.com/napi-rs/napi-rs#readme",
2018-04-28 17:26:38 +09:00
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
2018-07-23 11:18:56 +09:00
"arrowParens": "always"
2018-05-01 15:17:51 +09:00
},
"lint-staged": {
2022-01-24 12:33:51 +09:00
"*.@(js|ts)": [
"eslint --fix"
],
"*.@(js||ts|json|md|yml|yaml)": [
2021-12-10 17:55:55 +09:00
"prettier --write"
2022-02-10 20:00:38 +09:00
],
"*.toml": [
"taplo format"
],
"*.rs": [
"cargo fmt --"
2021-12-10 17:55:55 +09:00
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && cargo fmt --all"
}
},
2018-05-01 15:17:51 +09:00
"devDependencies": {
2022-10-24 00:03:18 +09:00
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
2022-10-24 00:03:18 +09:00
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
2022-10-24 00:03:18 +09:00
"@taplo/cli": "^0.5.2",
"@types/debug": "^4.1.7",
2022-03-13 19:28:41 +09:00
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.18",
2022-08-23 21:18:25 +09:00
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"ava": "^5.1.1",
"benny": "^3.7.1",
2022-08-23 21:18:25 +09:00
"c8": "^7.12.0",
2022-07-06 22:08:29 +09:00
"colorette": "^2.0.19",
"cross-env": "^7.0.3",
2022-10-24 00:03:18 +09:00
"electron": "20.3.3",
"esbuild": "^0.17.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
2022-07-06 22:08:29 +09:00
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lerna": "^6.4.1",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"rollup": "^3.10.0",
2022-01-24 12:33:51 +09:00
"shx": "^0.3.4",
"sinon": "^15.0.1",
"source-map-support": "^0.5.21",
2022-08-23 21:18:25 +09:00
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
2022-01-24 12:33:51 +09:00
},
2022-11-21 00:00:28 +09:00
"packageManager": "yarn@3.3.0"
2020-12-08 12:23:26 +09:00
}