-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "pathfinding-worker",
"description": "Fast node.js pathfinding on workers for grid-based games",
"version": "2.3.0",
"keywords": [
"astar",
"dijkstra",
"path",
"pathfinding",
"find",
"worker",
"navigation",
"way",
"node",
"grid",
"thread"
],
"license": "MIT",
"author": {
"name": "Nikita Galadiy",
"email": "[email protected]",
"url": "https://neki.guru/"
},
"main": "./dist/index.js",
"scripts": {
"build": "yarn build:worker && yarn build:entrypoint",
"build:worker": "webpack --config ./webpack/worker.config.js --mode production",
"build:entrypoint": "webpack --config ./webpack/entrypoint.config.js --mode production",
"test": "jest",
"lint": "eslint \"./src/**/*.ts\" --fix"
},
"dependencies": {
"heap": "0.2.7",
"uuid": "10.0.0"
},
"devDependencies": {
"@types/heap": "0.2.34",
"@types/jest": "29.5.12",
"@types/node": "20.14.11",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"typescript": "5.5.3",
"typescript-eslint": "7.16.1",
"webpack": "5.93.0",
"webpack-cli": "5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neki-dev/pathfinding-worker.git"
}
}