-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 KB
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
{
"name": "@zakkster/lite-steer",
"author": "Zahary Shinikchiev <shinikchiev@yahoo.com>",
"version": "1.0.2",
"description": "Zero-GC steering behaviors for autonomous agents. Boids, seek, flee, wander, path following, curl noise. Built on lite-vec.",
"type": "module",
"main": "Steer.js",
"types": "Steer.d.ts",
"exports": {
".": {
"types": "./Steer.d.ts",
"import": "./Steer.js",
"default": "./Steer.js"
}
},
"files": [
"Steer.js",
"Steer.d.ts",
"README.md"
],
"license": "MIT",
"homepage": "https://github.com/PeshoVurtoleta/lite-steer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/PeshoVurtoleta/lite-steer.git"
},
"bugs": {
"url": "https://github.com/PeshoVurtoleta/lite-steer/issues",
"email": "shinikchiev@yahoo.com"
},
"dependencies": {
"@zakkster/lite-vec": "^1.0.0"
},
"keywords": [
"steering",
"boids",
"flocking",
"pathfinding",
"seek",
"flee",
"wander",
"ai",
"autonomous-agent",
"zero-gc"
]
}