@frsource/babylon-box3d 1.0.0
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.
- package/LICENSE +21 -0
- package/README.md +95 -0
- package/dist/index.d.mts +782 -0
- package/dist/index.d.ts +782 -0
- package/dist/index.js +1243 -0
- package/dist/index.mjs +1229 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@frsource/babylon-box3d",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Babylon.js Physics V2 plugin backed by box3d-wasm (Erin Catto's Box3D compiled to WebAssembly)",
|
|
5
|
+
"repository": "https://github.com/FRSOURCE/babylon-box3d.git",
|
|
6
|
+
"homepage": "https://github.com/FRSOURCE/babylon-box3d",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsup && node scripts/bundle-ambient-types.mjs",
|
|
9
|
+
"lint": "eslint . && prettier . --check",
|
|
10
|
+
"fix": "pnpm eslint --fix && prettier . --write",
|
|
11
|
+
"prepack": "pnpm build",
|
|
12
|
+
"release": "semantic-release",
|
|
13
|
+
"release:ci": "pnpm release --yes",
|
|
14
|
+
"release:test": "pnpm release --no-git-tag-version --no-push --skip-npm",
|
|
15
|
+
"test": "vitest run",
|
|
16
|
+
"test:dev": "vitest --ui --open",
|
|
17
|
+
"typecheck": "tsc --noEmit"
|
|
18
|
+
},
|
|
19
|
+
"main": "dist/index.js",
|
|
20
|
+
"types": "dist/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"default": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./*": "./*.js"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"babylonjs",
|
|
31
|
+
"physics",
|
|
32
|
+
"box3d",
|
|
33
|
+
"box2d",
|
|
34
|
+
"wasm",
|
|
35
|
+
"webassembly"
|
|
36
|
+
],
|
|
37
|
+
"author": "Jakub Freisler <jakub.freisler@frsource.org>",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"packageManager": "pnpm@11.9.0",
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"box3d-wasm": "^0.2.0"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@babylonjs/core": "^9.0.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@babylonjs/core": "9.15.0",
|
|
48
|
+
"@frsource/eslint-config": "1.85.2",
|
|
49
|
+
"@frsource/prettier-config": "1.47.2",
|
|
50
|
+
"@frsource/semantic-release-config": "1.116.2",
|
|
51
|
+
"@vitest/coverage-v8": "4.1.9",
|
|
52
|
+
"@vitest/ui": "4.1.9",
|
|
53
|
+
"del-cli": "7.0.0",
|
|
54
|
+
"eslint": "10.5.0",
|
|
55
|
+
"globals": "17.7.0",
|
|
56
|
+
"tsup": "8.5.1",
|
|
57
|
+
"prettier": "3.8.4",
|
|
58
|
+
"semantic-release": "25.0.5",
|
|
59
|
+
"typescript": "^6.0.3",
|
|
60
|
+
"vitest": "4.1.9"
|
|
61
|
+
},
|
|
62
|
+
"publishConfig": {
|
|
63
|
+
"access": "public"
|
|
64
|
+
},
|
|
65
|
+
"files": [
|
|
66
|
+
"dist",
|
|
67
|
+
"package.json",
|
|
68
|
+
"README.md",
|
|
69
|
+
"LICENSE"
|
|
70
|
+
],
|
|
71
|
+
"funding": "https://buymeacoffee.com/frsource"
|
|
72
|
+
}
|