-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 973 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
39
40
41
{
"name": "@2003scape/rsc-path-finder",
"version": "1.1.0",
"description": "generate paths between points on a runescape classic map",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/2003scape/rsc-path-finder.git"
},
"keywords": [
"runescape",
"rsc",
"landscape",
"paths",
"collision",
"astar",
"pathfinder",
"async"
],
"author": "2003Scape Team",
"license": "AGPL-3.0+",
"bugs": {
"url": "https://github.com/2003scape/rsc-path-finder/issues"
},
"homepage": "https://github.com/2003scape/rsc-path-finder#readme",
"dependencies": {
"@misterhat/easystarjs": "^0.5.3",
"bitfield": "^4.0.0",
"ndarray": "^1.0.19"
},
"peerDependencies": {
"@2003scape/rsc-landscape": "^2.0.1"
},
"optionalDependencies": {
"canvas": "^2.6.1"
},
"devDependencies": {
"@2003scape/rsc-config": "^1.0.1",
"@2003scape/rsc-landscape": "^2.0.1"
}
}