-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@node-3d/addon-tools",
"version": "10.0.0",
"description": "Helpers for Node.js addons and dependency packages",
"keywords": [
"addon",
"bindings",
"c++",
"events",
"gyp",
"headers",
"include",
"napi",
"native",
"utils"
],
"homepage": "https://github.com/node-3d/node-3d#readme",
"bugs": {
"url": "https://github.com/node-3d/node-3d/issues"
},
"license": "MIT",
"author": "Luis Blanco <luisblanco1337@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/node-3d/addon-tools.git"
},
"files": [
"dist",
"ts/utils/oxlint.ts",
"ts/utils/oxfmt.ts",
"include",
"utils",
"LICENSE",
"tsconfig.json",
"package.json"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./oxlint": {
"types": "./ts/utils/oxlint.ts",
"default": "./ts/utils/oxlint.ts"
},
"./oxfmt": {
"types": "./ts/utils/oxfmt.ts",
"default": "./ts/utils/oxfmt.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build:ci": "rslib build",
"build:watch": "rslib build --watch",
"build:test-addon": "cd test-addon && node-gyp rebuild -j max --silent",
"lint:ts": "tsgo -p tsconfig.test.json --noEmit",
"lint:oxlint": "oxlint .",
"format:ts": "oxfmt -c ./oxfmt.config.ts --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx}\"",
"format:ci": "oxfmt -c ./oxfmt.config.ts --check --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx}\"",
"lint:all": "npm run lint:ts && npm run lint:oxlint",
"prepare": "npm run build:ci",
"test:watch": "node --test --watch \"tests/**/*.test.ts\"",
"test:ci": "node --test \"tests/**/*.test.ts\"",
"test:test-addon": "npm run build:test-addon && node --test \"test-addon/**/*.test.ts\""
},
"devDependencies": {
"@rslib/core": "0.23.2",
"@types/node": "24.13.2",
"@typescript/native-preview": "7.0.0-dev.20260704.1",
"node-addon-api": "8.9.0",
"oxfmt": "0.57.0",
"oxlint": "1.72.0",
"tslib": "2.8.1",
"typescript": "6.0.3"
},
"peerDependencies": {
"node-addon-api": "8.9.0"
},
"peerDependenciesMeta": {
"node-addon-api": {
"optional": true
}
},
"engines": {
"node": ">=24.13.0",
"npm": ">=11.6.2"
}
}