2018-04-28 17:26:38 +09:00
|
|
|
{
|
|
|
|
"name": "napi-rs",
|
2020-10-15 21:16:52 +09:00
|
|
|
"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",
|
2021-12-14 01:37:46 +09:00
|
|
|
"memory-testing",
|
2022-01-24 12:33:51 +09:00
|
|
|
"examples/napi",
|
2022-03-26 18:01:12 +09:00
|
|
|
"examples/napi-compat-mode",
|
2023-07-17 15:56:02 +09:00
|
|
|
"examples/binary"
|
2021-12-10 17:55:55 +09:00
|
|
|
],
|
2018-04-28 17:26:38 +09:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-05-14 19:56:50 +09:00
|
|
|
"url": "git@github.com:napi-rs/napi-rs.git"
|
2018-04-28 17:26:38 +09:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
2020-05-06 00:13:23 +09:00
|
|
|
"scripts": {
|
2020-10-15 21:16:52 +09:00
|
|
|
"bench": "cross-env TS_NODE_PROJECT='./bench/tsconfig.json' node -r ts-node/register/transpile-only bench/bench.ts",
|
2023-04-06 12:04:53 +09:00
|
|
|
"build": "lerna run build --scope '@napi-rs/*'",
|
2022-01-24 12:33:51 +09:00
|
|
|
"build:bench": "yarn workspace bench build",
|
|
|
|
"build:memory": "yarn workspace memory-testing build",
|
2023-07-17 15:56:02 +09:00
|
|
|
"build:test": "lerna run build --stream --concurrency 1 --scope=\"@examples/*\"",
|
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",
|
2020-05-12 14:59:20 +09:00
|
|
|
"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 .",
|
2023-09-14 07:45:14 +09:00
|
|
|
"test": "lerna run test --concurrency=1 --ignore @napi-rs/cli",
|
2023-09-20 17:18:01 +09:00
|
|
|
"test:bun": "bun test examples/napi/__tests__/values.spec.ts",
|
2023-04-06 12:04:53 +09:00
|
|
|
"test:cli": "yarn workspace @napi-rs/cli test",
|
2023-09-20 17:18:01 +09:00
|
|
|
"test:electron": "electron examples/napi/electron.cjs",
|
2022-05-21 14:53:40 +09:00
|
|
|
"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",
|
2023-04-06 15:35:56 +09:00
|
|
|
"prepublish": "yarn build"
|
2020-05-06 00:13:23 +09:00
|
|
|
},
|
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
|
|
|
},
|
2020-05-06 00:13:23 +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": [
|
2022-03-05 15:14:32 +09:00
|
|
|
"cargo fmt --"
|
2021-12-10 17:55:55 +09:00
|
|
|
]
|
2020-05-06 00:13:23 +09:00
|
|
|
},
|
2018-05-01 15:17:51 +09:00
|
|
|
"devDependencies": {
|
2023-04-06 12:04:53 +09:00
|
|
|
"@napi-rs/cli": "workspace:*",
|
2023-11-02 21:10:08 +09:00
|
|
|
"@rollup/plugin-alias": "^5.0.1",
|
|
|
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
|
|
"@rollup/plugin-json": "^6.0.1",
|
|
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
|
|
"@rollup/plugin-replace": "^5.0.5",
|
2022-10-24 00:03:18 +09:00
|
|
|
"@taplo/cli": "^0.5.2",
|
2023-11-19 16:13:06 +09:00
|
|
|
"@types/debug": "^4.1.12",
|
|
|
|
"@types/lodash-es": "^4.17.11",
|
|
|
|
"@types/node": "^20.9.2",
|
|
|
|
"@types/sinon": "^17.0.1",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
|
|
|
"@typescript-eslint/parser": "^6.11.0",
|
2023-07-17 15:56:02 +09:00
|
|
|
"ava": "^5.3.1",
|
2023-11-19 16:13:06 +09:00
|
|
|
"bun-types": "^1.0.13",
|
2023-11-02 21:10:08 +09:00
|
|
|
"c8": "^8.0.1",
|
2020-12-02 16:26:29 +09:00
|
|
|
"cross-env": "^7.0.3",
|
2023-12-05 18:25:51 +09:00
|
|
|
"electron": "^28.0.0",
|
2023-11-02 13:57:11 +09:00
|
|
|
"esbuild": "^0.19.5",
|
2023-11-19 16:13:06 +09:00
|
|
|
"eslint": "^8.54.0",
|
2023-08-06 11:41:59 +09:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-11-02 21:10:08 +09:00
|
|
|
"eslint-plugin-import": "^2.29.0",
|
2023-04-11 11:47:52 +09:00
|
|
|
"husky": "^8.0.3",
|
2023-11-28 23:07:51 +09:00
|
|
|
"lerna": "^8.0.0",
|
2023-11-19 16:13:06 +09:00
|
|
|
"lint-staged": "^15.1.0",
|
2020-05-06 00:13:23 +09:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-11-19 16:13:06 +09:00
|
|
|
"prettier": "^3.1.0",
|
2022-01-24 12:33:51 +09:00
|
|
|
"shx": "^0.3.4",
|
2023-11-02 21:10:08 +09:00
|
|
|
"sinon": "^17.0.1",
|
2021-11-23 06:53:04 +09:00
|
|
|
"source-map-support": "^0.5.21",
|
2022-08-23 21:18:25 +09:00
|
|
|
"ts-node": "^10.9.1",
|
2023-11-02 21:10:08 +09:00
|
|
|
"tslib": "^2.6.2",
|
|
|
|
"typescript": "^5.2.2"
|
2022-01-24 12:33:51 +09:00
|
|
|
},
|
2023-11-14 20:59:37 +09:00
|
|
|
"packageManager": "yarn@4.0.2"
|
2020-12-08 12:23:26 +09:00
|
|
|
}
|