mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [c8](https://togithub.com/bcoe/c8) | [`^9.1.0` -> `^10.0.0`](https://renovatebot.com/diffs/npm/c8/9.1.0/10.0.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
<details>
<summary>bcoe/c8 (c8)</summary>
### [`v10.0.0`](https://togithub.com/bcoe/c8/blob/HEAD/CHANGELOG.md#1000-2024-06-10)
[Compare Source](https://togithub.com/bcoe/c8/compare/v9.1.0...v10.0.0)
##### ⚠ BREAKING CHANGES
- **deps:** Node 18 is now the minimum supported Node.js version
##### Bug Fixes
- **deps:** update test-exclude with new glob / minimatch ([#​531](https://togithub.com/bcoe/c8/issues/531)) ([e33cf30](e33cf30d0c))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/napi-rs/napi-rs).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
99 lines
3.0 KiB
JSON
99 lines
3.0 KiB
JSON
{
|
|
"name": "napi-rs",
|
|
"version": "0.0.0",
|
|
"description": "A minimal library for building compiled Node add-ons in Rust.",
|
|
"workspaces": [
|
|
"bench",
|
|
"cli",
|
|
"wasm-runtime",
|
|
"triples",
|
|
"memory-testing",
|
|
"examples/napi",
|
|
"examples/napi-compat-mode",
|
|
"examples/binary"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:napi-rs/napi-rs.git"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"bench": "cross-env TS_NODE_PROJECT='./bench/tsconfig.json' node -r ts-node/register/transpile-only bench/bench.ts",
|
|
"build": "lerna run build --scope '@napi-rs/*'",
|
|
"build:bench": "yarn workspace bench build",
|
|
"build:memory": "yarn workspace memory-testing build",
|
|
"build:test": "lerna run build --stream --concurrency 1 --scope=\"@examples/*\"",
|
|
"format": "run-p format:prettier format:rs format:toml",
|
|
"format:prettier": "prettier . -w",
|
|
"format:rs": "cargo fmt",
|
|
"format:toml": "taplo format",
|
|
"lint": "oxlint --import-plugin --ignore-path=./.oxlintignore --deny-warnings -c oxlint.json",
|
|
"test": "yarn workspaces foreach -A --exclude \"{cli,napi-rs}\" run test",
|
|
"test:bun": "bun test examples/napi/__tests__/values.spec.ts",
|
|
"test:cli": "yarn workspace @napi-rs/cli test",
|
|
"test:electron": "electron examples/napi/electron.cjs",
|
|
"test:macro": "cargo test -p napi-examples",
|
|
"test:memory": "node memory-testing/index.mjs",
|
|
"postinstall": "husky install",
|
|
"prepublish": "yarn build",
|
|
"prepare": "husky"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/napi-rs/napi-rs/issues"
|
|
},
|
|
"homepage": "https://github.com/napi-rs/napi-rs#readme",
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"arrowParens": "always"
|
|
},
|
|
"lint-staged": {
|
|
"*.@(js|ts)": [
|
|
"oxlint --import-plugin --ignore-path=./.oxlintignore --deny-warnings -D correctness --fix"
|
|
],
|
|
"*.@(js||ts|json|md|yml|yaml)": [
|
|
"prettier --write"
|
|
],
|
|
"*.toml": [
|
|
"taplo format"
|
|
],
|
|
"*.rs": [
|
|
"cargo fmt --"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "workspace:*",
|
|
"@taplo/cli": "^0.7.0",
|
|
"@types/debug": "^4.1.12",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/node": "^20.11.13",
|
|
"@types/sinon": "^17.0.3",
|
|
"ava": "^6.1.1",
|
|
"bun-types": "^1.0.25",
|
|
"c8": "^10.0.0",
|
|
"cross-env": "^7.0.3",
|
|
"electron": "^31.0.0",
|
|
"esbuild": "^0.21.0",
|
|
"husky": "^9.0.7",
|
|
"lerna": "^8.0.2",
|
|
"lint-staged": "^15.2.1",
|
|
"npm-run-all2": "^6.1.1",
|
|
"oxlint": "^0.4.0",
|
|
"prettier": "^3.2.4",
|
|
"rollup": "^4.9.6",
|
|
"shx": "^0.3.4",
|
|
"sinon": "^18.0.0",
|
|
"source-map-support": "^0.5.21",
|
|
"ts-node": "^10.9.2",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.4.4"
|
|
},
|
|
"packageManager": "yarn@4.3.0",
|
|
"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"
|
|
}
|
|
}
|