-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 941 Bytes
/
package.json
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
{
"name": "@footgun/collide-and-slide-2d",
"version": "0.1.0",
"description": "slide an ellipse/sphere along a series of line segments in 2d",
"main": "collide-and-slide-2d.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"prepublishOnly": "npm test",
"test": "node --test ./test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mreinstein/collide-and-slide-2d.git"
},
"keywords": [
"collision",
"response",
"ellipse",
"ellipsoid",
"2d",
"physics"
],
"author": "Michael Reinstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/mreinstein/collide-and-slide-2d/issues"
},
"homepage": "https://github.com/mreinstein/collide-and-slide-2d#readme",
"dependencies": {
"@footgun/collision-2d": "^0.1.0",
"@footgun/math-gap": "^0.1.0",
"@footgun/vec2-gap": "^0.1.0",
"wgpu-matrix": "^3.3.0"
}
}