-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
39 lines (39 loc) · 877 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
{
"name": "astar-typescript",
"version": "1.2.7",
"description": "A*(a-star) pathfinding in TypeScript",
"keywords": [
"A-star",
"A*",
"Algorithm",
"Graph",
"Pathfinding",
"Search",
"Shakey",
"Traversal",
"TypeScript"
],
"bugs": {
"email": "[email protected]"
},
"license": "MIT",
"author": "digitsensitive <[email protected]>",
"main": "dist/astar.js",
"types": "dist/astar.d.ts",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"run-example": "cd example && yarn install && yarn run dev"
},
"dependencies": {
"lodash": "4.17.21"
},
"devDependencies": {
"typescript": "5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/digitsensitive/astar-typescript.git"
},
"homepage": "https://github.com/digitsensitive/astar-typescript#readme"
}