2018-04-28 16:26:38 +08:00
|
|
|
{
|
|
|
|
"name": "napi-rs",
|
2020-10-15 20:16:52 +08:00
|
|
|
"version": "0.0.0",
|
2018-05-01 14:17:51 +08:00
|
|
|
"description": "A minimal library for building compiled Node add-ons in Rust.",
|
2021-12-10 16:55:55 +08:00
|
|
|
"workspaces": [
|
2022-01-24 11:33:51 +08:00
|
|
|
"bench",
|
2021-12-10 16:55:55 +08:00
|
|
|
"cli",
|
2024-01-16 23:28:40 +08:00
|
|
|
"wasm-runtime",
|
2021-12-10 16:55:55 +08:00
|
|
|
"triples",
|
2021-12-14 00:37:46 +08:00
|
|
|
"memory-testing",
|
2022-01-24 11:33:51 +08:00
|
|
|
"examples/napi",
|
2022-03-26 17:01:12 +08:00
|
|
|
"examples/napi-compat-mode",
|
2023-07-17 14:56:02 +08:00
|
|
|
"examples/binary"
|
2021-12-10 16:55:55 +08:00
|
|
|
],
|
2018-04-28 16:26:38 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-05-14 18:56:50 +08:00
|
|
|
"url": "git@github.com:napi-rs/napi-rs.git"
|
2018-04-28 16:26:38 +08:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
2020-05-05 23:13:23 +08:00
|
|
|
"scripts": {
|
2020-10-15 20:16:52 +08:00
|
|
|
"bench": "cross-env TS_NODE_PROJECT='./bench/tsconfig.json' node -r ts-node/register/transpile-only bench/bench.ts",
|
2023-04-06 11:04:53 +08:00
|
|
|
"build": "lerna run build --scope '@napi-rs/*'",
|
2022-01-24 11:33:51 +08:00
|
|
|
"build:bench": "yarn workspace bench build",
|
|
|
|
"build:memory": "yarn workspace memory-testing build",
|
2023-07-17 14:56:02 +08:00
|
|
|
"build:test": "lerna run build --stream --concurrency 1 --scope=\"@examples/*\"",
|
2022-02-10 19:00:38 +08:00
|
|
|
"format": "run-p format:prettier format:rs format:toml",
|
2021-12-10 16:55:55 +08:00
|
|
|
"format:prettier": "prettier . -w",
|
2020-05-12 13:59:20 +08:00
|
|
|
"format:rs": "cargo fmt",
|
2022-02-10 19:00:38 +08:00
|
|
|
"format:toml": "taplo format",
|
2024-04-10 14:26:34 +08:00
|
|
|
"lint": "oxlint --import-plugin --ignore-path=./.oxlintignore --deny-warnings -D correctness",
|
2023-09-14 00:45:14 +02:00
|
|
|
"test": "lerna run test --concurrency=1 --ignore @napi-rs/cli",
|
2024-04-08 22:04:57 +09:00
|
|
|
"test:without-lerna": "yarn workspaces foreach -A --exclude \"{cli,napi-rs}\" run test",
|
2023-09-20 01:18:01 -07:00
|
|
|
"test:bun": "bun test examples/napi/__tests__/values.spec.ts",
|
2023-04-06 11:04:53 +08:00
|
|
|
"test:cli": "yarn workspace @napi-rs/cli test",
|
2023-09-20 01:18:01 -07:00
|
|
|
"test:electron": "electron examples/napi/electron.cjs",
|
2022-05-21 01:53:40 -04:00
|
|
|
"test:macro": "cargo test -p napi-examples",
|
2021-05-28 18:50:16 +08:00
|
|
|
"test:memory": "node memory-testing/index.mjs",
|
2021-02-22 15:39:50 +08:00
|
|
|
"postinstall": "husky install",
|
2024-01-26 14:00:52 +08:00
|
|
|
"prepublish": "yarn build",
|
|
|
|
"prepare": "husky"
|
2020-05-05 23:13:23 +08:00
|
|
|
},
|
2018-04-28 16:26:38 +08:00
|
|
|
"bugs": {
|
2020-07-16 12:43:09 +08:00
|
|
|
"url": "https://github.com/napi-rs/napi-rs/issues"
|
2018-04-28 16:26:38 +08:00
|
|
|
},
|
2020-07-16 12:43:09 +08:00
|
|
|
"homepage": "https://github.com/napi-rs/napi-rs#readme",
|
2018-04-28 16:26:38 +08:00
|
|
|
"prettier": {
|
|
|
|
"printWidth": 80,
|
|
|
|
"semi": false,
|
|
|
|
"singleQuote": true,
|
|
|
|
"trailingComma": "all",
|
2018-07-23 10:18:56 +08:00
|
|
|
"arrowParens": "always"
|
2018-05-01 14:17:51 +08:00
|
|
|
},
|
2020-05-05 23:13:23 +08:00
|
|
|
"lint-staged": {
|
2022-01-24 11:33:51 +08:00
|
|
|
"*.@(js|ts)": [
|
2024-04-10 14:26:34 +08:00
|
|
|
"oxlint --import-plugin --ignore-path=./.oxlintignore --deny-warnings -D correctness --fix"
|
2022-01-24 11:33:51 +08:00
|
|
|
],
|
|
|
|
"*.@(js||ts|json|md|yml|yaml)": [
|
2021-12-10 16:55:55 +08:00
|
|
|
"prettier --write"
|
2022-02-10 19:00:38 +08:00
|
|
|
],
|
|
|
|
"*.toml": [
|
|
|
|
"taplo format"
|
|
|
|
],
|
|
|
|
"*.rs": [
|
2022-03-05 14:14:32 +08:00
|
|
|
"cargo fmt --"
|
2021-12-10 16:55:55 +08:00
|
|
|
]
|
2020-05-05 23:13:23 +08:00
|
|
|
},
|
2018-05-01 14:17:51 +08:00
|
|
|
"devDependencies": {
|
2023-04-06 11:04:53 +08:00
|
|
|
"@napi-rs/cli": "workspace:*",
|
2024-02-01 15:25:39 +00:00
|
|
|
"@taplo/cli": "^0.7.0",
|
2023-11-19 15:13:06 +08:00
|
|
|
"@types/debug": "^4.1.12",
|
2023-12-06 19:41:21 +08:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2024-02-01 12:14:56 +08:00
|
|
|
"@types/node": "^20.11.13",
|
|
|
|
"@types/sinon": "^17.0.3",
|
|
|
|
"ava": "^6.1.1",
|
|
|
|
"bun-types": "^1.0.25",
|
|
|
|
"c8": "^9.1.0",
|
2020-12-02 07:26:29 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2024-04-16 14:17:22 +08:00
|
|
|
"electron": "^30.0.0",
|
2024-01-27 22:45:01 +00:00
|
|
|
"esbuild": "^0.20.0",
|
2024-02-01 12:14:56 +08:00
|
|
|
"husky": "^9.0.7",
|
|
|
|
"lerna": "^8.0.2",
|
|
|
|
"lint-staged": "^15.2.1",
|
|
|
|
"npm-run-all2": "^6.1.1",
|
2024-04-10 14:26:34 +08:00
|
|
|
"oxlint": "^0.2.16",
|
2024-02-01 12:14:56 +08:00
|
|
|
"prettier": "^3.2.4",
|
|
|
|
"rollup": "^4.9.6",
|
2022-01-24 11:33:51 +08:00
|
|
|
"shx": "^0.3.4",
|
2023-11-02 20:10:08 +08:00
|
|
|
"sinon": "^17.0.1",
|
2021-11-22 21:53:04 +00:00
|
|
|
"source-map-support": "^0.5.21",
|
2024-02-01 12:14:56 +08:00
|
|
|
"ts-node": "^10.9.2",
|
2023-11-02 20:10:08 +08:00
|
|
|
"tslib": "^2.6.2",
|
2024-04-10 14:26:34 +08:00
|
|
|
"typescript": "^5.4.4"
|
2022-01-24 11:33:51 +08:00
|
|
|
},
|
2024-03-05 11:31:06 +08:00
|
|
|
"packageManager": "yarn@4.1.1",
|
2024-01-16 23:28:40 +08:00
|
|
|
"resolutions": {
|
|
|
|
"node-inspect-extracted": "patch:node-inspect-extracted@npm%3A3.0.0#~/.yarn/patches/node-inspect-extracted-npm-3.0.0-f661b6c334.patch",
|
|
|
|
"buffer@npm:^6.0.3": "patch:buffer@npm%3A6.0.3#~/.yarn/patches/buffer-npm-6.0.3-cd90dfedfe.patch"
|
|
|
|
}
|
2020-12-08 11:23:26 +08:00
|
|
|
}
|