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",
|
2024-01-17 00:28:40 +09:00
|
|
|
"wasm-runtime",
|
2021-12-10 17:55:55 +09:00
|
|
|
"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",
|
2024-01-26 15:00:52 +09:00
|
|
|
"prepublish": "yarn build",
|
|
|
|
"prepare": "husky"
|
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:*",
|
2024-02-02 00:25:39 +09:00
|
|
|
"@taplo/cli": "^0.7.0",
|
2023-11-19 16:13:06 +09:00
|
|
|
"@types/debug": "^4.1.12",
|
2023-12-06 20:41:21 +09:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2024-02-01 13:14:56 +09:00
|
|
|
"@types/node": "^20.11.13",
|
|
|
|
"@types/sinon": "^17.0.3",
|
chore(deps): update typescript-eslint monorepo to v7 (major) (#1947)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`^6.20.0` -> `^7.0.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.20.0/7.0.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/7.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/7.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/6.20.0/7.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/6.20.0/7.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`^6.20.0` -> `^7.0.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.20.0/7.0.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/7.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/7.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/6.20.0/7.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/6.20.0/7.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)</summary>
### [`v7.0.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#701-2024-02-12)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.0.0...v7.0.1)
##### 🩹 Fixes
- **eslint-plugin:** update peer dep for parser
##### ❤️ Thank You
- Tim Dorr
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
### [`v7.0.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#700-2024-02-12)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.21.0...v7.0.0)
##### 🚀 Features
- ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
- add support for flat configs
##### 🩹 Fixes
- **eslint-plugin:** \[prefer-find] stop throwing type errors when converting symbols to numbers
##### ⚠️ Breaking Changes
- ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
##### ❤️ Thank You
- Brad Zacher
- Kirk Waiblinger
- StyleShit
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.21.0 (2024-02-05)
##### 🚀 Features
- export plugin metadata
- allow `parserOptions.project: false`
- **eslint-plugin:** add rule prefer-find
##### 🩹 Fixes
- **eslint-plugin:** \[no-unused-vars] don't report on types referenced in export assignment expression
- **eslint-plugin:** \[switch-exhaustiveness-check] better support for intersections, infinite types, non-union values
- **eslint-plugin:** \[consistent-type-imports] dont report on types used in export assignment expressions
- **eslint-plugin:** \[no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option
- **eslint-plugin:** \[class-literal-property-style] allow getter when same key setter exists
- **eslint-plugin:** \[no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before `as` keyword
##### ❤️ Thank You
- auvred
- Brad Zacher
- Kirk Waiblinger
- Pete Gonzalez
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.20.0 (2024-01-29)
##### 🚀 Features
- **eslint-plugin:** \[member-ordering] allow easy reuse of the default ordering
##### 🩹 Fixes
- **eslint-plugin:** \[no-useless-template-literals] incorrect bigint autofix result
- **eslint-plugin:** \[prefer-nullish-coalescing] treat any/unknown as non-nullable
- **eslint-plugin:** \[no-useless-template-literals] report Infinity & NaN
- **eslint-plugin:** \[prefer-readonly] disable checking accessors
##### ❤️ Thank You
- Alex Parloti
- auvred
- James Browning
- StyleShit
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.19.1 (2024-01-22)
##### 🩹 Fixes
- **type-utils:** preventing isUnsafeAssignment infinite recursive calls
- **eslint-plugin:** \[no-unnecessary-condition] fix false positive for type variable
##### ❤️ Thank You
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.19.0 (2024-01-15)
##### 🚀 Features
- **eslint-plugin:** \[prefer-promise-reject-errors] add rule
- **eslint-plugin:** \[no-array-delete] add new rule
- **eslint-plugin:** \[no-useless-template-literals] add fix suggestions
##### 🩹 Fixes
- **eslint-plugin:** \[no-unnecessary-type-assertion] detect unnecessary non-null-assertion on a call expression
- **eslint-plugin:** \[no-unnecesary-type-assertion] treat unknown/any as nullable
##### ❤️ Thank You
- auvred
- Brad Zacher
- Josh Goldberg ✨
- Joshua Chen
- LJX
- Steven
- StyleShit
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.18.1 (2024-01-08)
##### 🩹 Fixes
- **eslint-plugin:** \[no-non-null-assertion] provide valid fix when member access is on next line
- **eslint-plugin:** \[no-unnecessary-condition] improve checking optional callee
- **eslint-plugin:** \[prefer-readonly] support modifiers of unions and intersections
- **eslint-plugin:** \[switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option
##### ❤️ Thank You
- auvred
- James
- Josh Goldberg ✨
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.18.0 (2024-01-06)
##### 🚀 Features
- **typescript-estree:** throw on invalid update expressions
- **eslint-plugin:** \[no-var-requires, no-require-imports] allow option
##### ❤️ Thank You
- auvred
- Joshua Chen
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
### [`v6.21.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6210-2024-02-05)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.20.0...v6.21.0)
##### 🚀 Features
- export plugin metadata
- allow `parserOptions.project: false`
- **eslint-plugin:** add rule prefer-find
##### 🩹 Fixes
- **eslint-plugin:** \[no-unused-vars] don't report on types referenced in export assignment expression
- **eslint-plugin:** \[switch-exhaustiveness-check] better support for intersections, infinite types, non-union values
- **eslint-plugin:** \[consistent-type-imports] dont report on types used in export assignment expressions
- **eslint-plugin:** \[no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option
- **eslint-plugin:** \[class-literal-property-style] allow getter when same key setter exists
- **eslint-plugin:** \[no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before `as` keyword
##### ❤️ Thank You
- auvred
- Brad Zacher
- Kirk Waiblinger
- Pete Gonzalez
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v7.0.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#701-2024-02-12)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.0.0...v7.0.1)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
### [`v7.0.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#700-2024-02-12)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.21.0...v7.0.0)
##### 🚀 Features
- ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
- add support for flat configs
##### ⚠️ Breaking Changes
- ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
##### ❤️ Thank You
- Brad Zacher
- Kirk Waiblinger
- StyleShit
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.21.0 (2024-02-05)
##### 🚀 Features
- allow `parserOptions.project: false`
##### ❤️ Thank You
- auvred
- Brad Zacher
- Kirk Waiblinger
- Pete Gonzalez
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.20.0 (2024-01-29)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.19.1 (2024-01-22)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.19.0 (2024-01-15)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.18.1 (2024-01-08)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
#### 6.18.0 (2024-01-06)
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
### [`v6.21.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6210-2024-02-05)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.20.0...v6.21.0)
##### 🚀 Features
- allow `parserOptions.project: false`
##### ❤️ Thank You
- auvred
- Brad Zacher
- Kirk Waiblinger
- Pete Gonzalez
- YeonJuan
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
</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 these updates 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
2024-02-13 13:31:38 +09:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
|
|
"@typescript-eslint/parser": "^7.0.0",
|
2024-02-01 13:14:56 +09:00
|
|
|
"ava": "^6.1.1",
|
|
|
|
"bun-types": "^1.0.25",
|
|
|
|
"c8": "^9.1.0",
|
2020-12-02 16:26:29 +09:00
|
|
|
"cross-env": "^7.0.3",
|
2024-02-25 01:50:22 +09:00
|
|
|
"electron": "^29.0.1",
|
2024-01-28 07:45:01 +09:00
|
|
|
"esbuild": "^0.20.0",
|
2024-02-01 13:14:56 +09:00
|
|
|
"eslint": "^8.56.0",
|
2023-12-06 20:41:21 +09:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-02-01 13:14:56 +09:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
|
|
|
"husky": "^9.0.7",
|
|
|
|
"lerna": "^8.0.2",
|
|
|
|
"lint-staged": "^15.2.1",
|
|
|
|
"npm-run-all2": "^6.1.1",
|
|
|
|
"prettier": "^3.2.4",
|
|
|
|
"rollup": "^4.9.6",
|
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",
|
2024-02-01 13:14:56 +09:00
|
|
|
"ts-node": "^10.9.2",
|
2023-11-02 21:10:08 +09:00
|
|
|
"tslib": "^2.6.2",
|
2024-02-01 13:14:56 +09:00
|
|
|
"typescript": "^5.3.3"
|
2022-01-24 12:33:51 +09:00
|
|
|
},
|
2024-01-31 23:19:33 +09:00
|
|
|
"packageManager": "yarn@4.1.0",
|
2024-01-17 00:28:40 +09: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 12:23:26 +09:00
|
|
|
}
|