-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·66 lines (66 loc) · 1.44 KB
/
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
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
{
"name": "bird-oid",
"version": "0.2.1",
"description": "A 3D boid system with accompanying emergent behaviors. Implementation mostly based on Craig Reynolds paper Steering Behaviors For Autonomous Characters.",
"keywords": [
"3d",
"boids",
"behaviors",
"behaviours",
"obstacle",
"path",
"vector-field",
"flow-field",
"steering",
"seek",
"flee",
"pursue",
"evade",
"arrive",
"avoid-obstacles",
"wander",
"follow-path",
"follow-flow-field",
"follow-leader",
"separate",
"cohere",
"align",
"flock",
"bounds",
"sphere",
"wrap"
],
"homepage": "https://github.com/dmnsgn/bird-oid",
"bugs": "https://github.com/dmnsgn/bird-oid/issues",
"repository": "dmnsgn/bird-oid",
"funding": [
{
"type": "individual",
"url": "https://paypal.me/dmnsgn"
},
{
"type": "individual",
"url": "https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3"
}
],
"license": "MIT",
"author": "dmnsgn (https://github.com/dmnsgn)",
"type": "module",
"exports": "./index.js",
"main": "index.js",
"types": "types/index.d.ts",
"dependencies": {
"gl-matrix": "^3.4.3"
},
"devDependencies": {
"dat.gui": "^0.7.9",
"es-module-shims": "^1.5.4",
"simplex-noise": "^3.0.1",
"three": "^0.139.2",
"vector-field": "^2.1.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}