@perplexdotgg/bounce 1.2.1 → 1.2.3

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.
@@ -1,6 +1,6 @@
1
1
  # Bounce API Reference
2
2
 
3
- Bounce is a fast, deterministic 3D physics library for TypeScript and JavaScript. It's written in pure TypeScript (no WebAssembly).
3
+ Bounce is a fast, deterministic 3D physics library for TypeScript and JavaScript projects. It's written in pure TypeScript (no WebAssembly).
4
4
 
5
5
  ## Installation
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@perplexdotgg/bounce",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "license": "MIT",
5
5
  "description": "Bounce",
6
6
  "main": "./build/bounce.js",
@@ -12,7 +12,7 @@
12
12
  "test": "vitest"
13
13
  },
14
14
  "dependencies": {
15
- "monomorph": "^1.5.1"
15
+ "monomorph": "^1.5.3"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/node": "^24.9.2",
@@ -28,5 +28,6 @@
28
28
  "repository": {
29
29
  "type": "git",
30
30
  "url": "https://codeberg.org/perplexdotgg/bounce"
31
- }
31
+ },
32
+ "funding": "https://opencollective.com/perplexgg"
32
33
  }
package/vite.config.js CHANGED
@@ -14,6 +14,7 @@ export default defineConfig({
14
14
  },
15
15
  minify: false,
16
16
  rollupOptions: {
17
+ external: ['monomorph'],
17
18
  treeshake: {
18
19
  propertyReadSideEffects: false,
19
20
  tryCatchDeoptimization: false,