-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "bridges-generator",
"version": "1.0.4",
"description": "Generates a Hashi puzzle",
"main": "lib/index.cjs.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.cjs.js",
"import": "./lib/index.js",
"default": "./lib/index.js"
}
},
"files": ["lib"],
"scripts": {
"build": "node build.mjs && dts-bundle-generator -o lib/index.d.ts src/index.ts",
"format": "biome format . --write",
"test": "tsc && node ./out/test/index.js",
"prepare": "npx husky && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonivrbic/bridges-generator.git"
},
"keywords": ["hashi", "hashiwokakero", "bridges", "generator"],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tonivrbic/bridges-generator/issues"
},
"homepage": "https://github.com/tonivrbic/bridges-generator#readme",
"dependencies": {
"bridges-solver": "^1.3.2"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"colors": "^1.3.3",
"dts-bundle-generator": "^9.2.4",
"esbuild": "^0.19.12",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"*": [
"biome format --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}