@node-3d/addon-tools 10.0.1 → 10.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -13
package/README.md CHANGED
@@ -7,7 +7,7 @@ This is a part of [Node3D](https://github.com/node-3d) project.
7
7
  [![Test](https://github.com/node-3d/addon-tools/actions/workflows/test.yml/badge.svg)](https://github.com/node-3d/addon-tools/actions/workflows/test.yml)
8
8
  [![Cpplint](https://github.com/node-3d/addon-tools/actions/workflows/cpplint.yml/badge.svg)](https://github.com/node-3d/addon-tools/actions/workflows/cpplint.yml)
9
9
 
10
- ```console
10
+ ```bash
11
11
  npm install @node-3d/addon-tools
12
12
  ```
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@node-3d/addon-tools",
3
- "version": "10.0.1",
3
+ "version": "10.0.2",
4
4
  "description": "Helpers for Node.js addons and dependency packages",
5
5
  "keywords": [
6
6
  "addon",
@@ -56,7 +56,7 @@
56
56
  "build:ci": "rslib build",
57
57
  "build:watch": "rslib build --watch",
58
58
  "build:test-addon": "cd test-addon && node-gyp rebuild -j max --silent",
59
- "lint:ts": "tsgo -p tsconfig.json --noEmit",
59
+ "lint:ts": "tsc -p tsconfig.json --noEmit",
60
60
  "lint:oxlint": "oxlint .",
61
61
  "format:ts": "oxfmt -c ./oxfmt.config.ts --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx}\"",
62
62
  "format:ts:ci": "oxfmt -c ./oxfmt.config.ts --check --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx}\"",
@@ -69,28 +69,19 @@
69
69
  "devDependencies": {
70
70
  "@rslib/core": "0.23.2",
71
71
  "@types/node": "24.13.2",
72
- "@typescript/native-preview": "7.0.0-dev.20260704.1",
73
72
  "clang-format-node": "3.0.7",
74
73
  "node-addon-api": "8.9.0",
75
74
  "oxfmt": "0.57.0",
76
75
  "oxlint": "1.72.0",
77
76
  "tslib": "2.8.1",
78
- "typescript": "6.0.3"
77
+ "typescript": "7.0.2"
79
78
  },
80
79
  "peerDependencies": {
81
- "node-addon-api": "8.9.0",
82
- "oxfmt": "0.57.0",
83
- "oxlint": "1.72.0"
80
+ "node-addon-api": "^8.9.0"
84
81
  },
85
82
  "peerDependenciesMeta": {
86
83
  "node-addon-api": {
87
84
  "optional": true
88
- },
89
- "oxfmt": {
90
- "optional": true
91
- },
92
- "oxlint": {
93
- "optional": true
94
85
  }
95
86
  },
96
87
  "engines": {