-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 834 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 834 Bytes
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
{
"name": "@footgun/collision-2d",
"version": "0.6.0",
"description": "A collection of collision detection and response functions for 2D",
"main": "collision-2d.js",
"type": "module",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"build:figures": "./build-figures.sh",
"prepublishOnly": "npm test",
"test": "node --test ./test/*.js"
},
"keywords": [
"collision",
"2d",
"physics",
"geometry"
],
"author": "Michael Reinstein",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:mreinstein/collision-2d.git"
},
"dependencies": {
"@footgun/math-gap": "^0.2.0",
"clamp": "^1.0.1",
"point-to-segment-2d": "^1.0.0",
"robust-point-in-polygon": "^1.0.3",
"segseg": "^1.0.0",
"wgpu-matrix": "^3.4.0"
}
}