forked from digitsensitive/astar-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1017 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1017 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
37
38
39
40
41
{
"name": "@rbxts/astar",
"version": "1.2.7",
"description": "A*(a-star) pathfinding in TypeScript",
"license": "MIT",
"main": "out/init.lua",
"types": "out/index.d.ts",
"scripts": {
"prepare": "rbxtsc",
"build": "rbxtsc",
"dev": "rbxtsc -w --verbose"
},
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "2.1.1-types.0",
"@rbxts/types": "1.0.712",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-roblox-ts": "0.0.35",
"prettier": "3.0.2",
"roblox-ts": "2.1.1",
"typescript": "4.9.4"
},
"resolutions": {
"typescript": "4.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/AircraftMadness/astar.git"
},
"homepage": "https://github.com/AircraftMadness/astar#readme"
}