-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.68 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
{
"author": "Luis Blanco <luisblanco1337@gmail.com>",
"name": "@node-3d/core",
"version": "6.0.0",
"description": "An extensible Node3D core for desktop applications",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"core",
"3d",
"node3d",
"opengl",
"webgl",
"glfw",
"graphics",
"gl",
"image"
],
"files": [
"dist",
"LICENSE",
"package.json",
"tsconfig.json",
"tsconfig.build.json"
],
"engines": {
"node": ">=24.13.0",
"npm": ">=11.6.2"
},
"scripts": {
"test:watch": "node --test --watch \"test/**/*.test.ts\"",
"test:ci": "node --test \"test/**/*.test.ts\"",
"lint:oxlint": "oxlint .",
"lint:all": "npm run lint:ts && npm run lint:oxlint",
"build:ci": "rslib build",
"build:watch": "rslib build --watch",
"lint:ts": "tsgo -p tsconfig.json --noEmit",
"prepare": "npm run build:ci"
},
"repository": {
"type": "git",
"url": "https://github.com/node-3d/core.git"
},
"dependencies": {
"@node-3d/addon-tools": "^11.0.0",
"@node-3d/glfw": "^7.0.0",
"@node-3d/image": "^6.0.0",
"@node-3d/webgl": "^6.0.0"
},
"devDependencies": {
"@rslib/core": "^0.21.3",
"@types/node": "^24.1.0",
"@types/pixelmatch": "^5.2.6",
"@types/three": "0.174.0",
"@typescript/native-preview": "^7.0.0-dev.20260503.1",
"oxlint": "^1.65.0",
"pixelmatch": "^6.0.0",
"pixi.js": "^7.3.1",
"three": "0.174.0",
"typescript": "^6.0.3"
},
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bugs": {
"url": "https://github.com/node-3d/node-3d/issues"
},
"homepage": "https://github.com/node-3d/node-3d#readme",
"publishConfig": {
"access": "public"
}
}