-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.47 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
{
"type": "module",
"name": "@evilkiwi/astar",
"version": "3.3.1",
"description": "Synchronous A* pathfinding for TypeScript",
"files": [
"build"
],
"sideEffects": false,
"main": "./build/index.mjs",
"types": "./build/index.d.ts",
"license": "GPL-3.0-only",
"author": {
"name": "Evil Kiwi Limited",
"url": "https://evil.kiwi",
"email": "[email protected]"
},
"homepage": "https://github.com/evilkiwi/astar",
"bugs": {
"url": "https://github.com/evilkiwi/astar/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilkiwi/astar.git"
},
"keywords": [
"a",
"star",
"path",
"finding",
"typescript"
],
"scripts": {
"prepack": "pnpm run build",
"build": "cross-env NODE_ENV=production node build.mjs && tsc",
"dev": "cross-env NODE_ENV=development node build.mjs && tsc",
"lint": "eslint --ext .ts --ignore-path .gitignore src",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test": "vitest run"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@vitest/coverage-v8": "^0.34.6",
"cross-env": "^7.0.3",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"rimraf": "^5.0.5",
"terser": "^5.24.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}