-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 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
61
62
{
"name": "oot-bingo-tools",
"version": "1.2.1",
"description": "Tools to work with the OoT Bingo generator, including analyzing rows, synergies, and frequencies",
"exports": {
".": "./dist/index.js"
},
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "ts-node src/sandbox/main.ts",
"test": "jest",
"build": "rollup -c --bundleConfigAsCjs",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint tsconfig.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ootbingo/oot-bingo-tools.git"
},
"keywords": [
"oot",
"bingo",
"tools"
],
"author": "",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/ootbingo/oot-bingo-tools/issues"
},
"homepage": "https://github.com/ootbingo/oot-bingo-tools#readme",
"dependencies": {
"oot-bingo-generator": "^1.0.9",
"oot-bingo-lists": "^1.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"tslib": "^2.6.2",
"@types/node": "^20.10.6"
},
"devDependencies": {
"@types/eslint": "^8.56.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"rollup": "^4.9.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5"
},
"prettier": {
"printWidth": 90,
"tabWidth": 2
}
}