-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 930 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
40
{
"name": "puzzle-lib",
"version": "1.7.0",
"description": "Library of puzzle-solving algorithms",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src",
"src"
],
"scripts": {
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"lint": "gts lint",
"posttest": "npm run lint",
"prepare": "npm run compile",
"pretest": "npm run compile",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/puzztool/puzzle-lib.git"
},
"author": "Kyle Farnung",
"license": "MIT",
"bugs": {
"url": "https://github.com/puzztool/puzzle-lib/issues"
},
"homepage": "https://github.com/puzztool/puzzle-lib#readme",
"devDependencies": {
"@types/node": "^22.10.0",
"gts": "^6.0.2",
"mocha": "^11.1.0",
"typescript": "~5.1.0"
},
"dependencies": {
"trie-prefix-tree": "^1.5.1"
}
}