-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.56 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
{
"author": "Luis Blanco <luisblanco1337@gmail.com>",
"name": "@node-3d/plugin-bullet",
"version": "4.0.0",
"description": "Bullet Physics plugin for Node.js 3D Core",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"plugin",
"3d",
"node3d",
"bullet",
"physics"
],
"files": [
"dist",
"LICENSE",
"package.json",
"README.md",
"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/plugin-bullet.git"
},
"dependencies": {
"@node-3d/bullet": "^5.0.0"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@types/three": "0.174.0",
"@node-3d/core": "^6.0.0",
"@node-3d/addon-tools": "^11.0.0",
"oxlint": "^1.65.0",
"three": "0.174.0",
"typescript": "^6.0.3",
"@rslib/core": "^0.21.3",
"@typescript/native-preview": "^7.0.0-dev.20260503.1"
},
"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"
}
}