-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
59
60
{
"version": "2.0.0",
"scripts": {
"ci": "npm run build && npm run test && npm run check-exports",
"format": "xo --fix",
"test": "vitest run src && npm run format && npm run test-coverage",
"test-coverage": "vitest run src --coverage",
"prepublishOnly": "npm run ci",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"local-release": "changeset version && changeset publish",
"build": "tsc"
},
"license": "MIT",
"description": "An a* solver",
"repository": "https://github.com/craigdallimore/a-star",
"bugs": {
"url": "https://github.com/craigdallimore/a-star/issues",
"email": "[email protected]"
},
"keywords": [
"a-star",
"path",
"pathfinding",
"algorithm"
],
"files": [
"dist"
],
"type": "module",
"name": "@decoy9697/a-star",
"main": "dist/index.js",
"xo": {
"prettier": true,
"rules": {
"func-names": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "off",
"import/extensions": "off",
"unicorn/prefer-module": "off"
}
},
"prettier": {
"tabWidth": 2,
"useTabs": false
},
"dependencies": {
"@decoy9697/priority-queue": "^2.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@changesets/cli": "^2.27.12",
"@types/node": "^22.10.10",
"@vitest/coverage-v8": "^3.0.4",
"fast-check": "^3.23.2",
"prettier": "^3.4.2",
"tslib": "^2.3.1",
"typescript": "^5.7.3",
"vitest": "^3.0.4",
"xo": "^0.60.0"
}
}