-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
75 lines (75 loc) · 2.35 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "libram",
"version": "0.9.21",
"description": "JavaScript helper library for KoLmafia",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/loathers/libram",
"author": "Samuel Gaus <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn run updateOverlappingItemSkillNames && yarn run build:tsc && yarn run build:bundled",
"build:tsc": "tsc",
"build:bundled": "node build.mjs",
"clean": "rm -rf dist",
"docs": "yarn run typedoc",
"format": "yarn run prettier --write .",
"lint": "yarn run eslint && yarn run prettier --check .",
"test": "yarn run vitest",
"prepack": "yarn run build && pinst --disable",
"updateProps": "node --import tsx ./tools/parseDefaultProperties.ts",
"updateOverlappingItemSkillNames": "node --import tsx ./tools/parseItemSkillNames.ts",
"parseModifiers": "node --import tsx ./tools/parseModifiers.ts",
"postinstall": "husky install",
"postpack": "pinst --enable"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"dependencies": {
"html-entities": "^2.5.2"
},
"devDependencies": {
"@babel/compat-data": "^7.25.4",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.10.0",
"@tsconfig/node20": "^20.1.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.5.4",
"esbuild": "^0.23.1",
"esbuild-plugin-babel": "^0.2.3",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-jsdoc": "^50.2.3",
"eslint-plugin-libram": "^0.4.14",
"husky": "^9.1.6",
"java-parser": "^2.3.2",
"kolmafia": "^5.28047.0",
"lint-staged": "^15.2.10",
"lodash-es": "^4.17.21",
"node-fetch": "^3.3.2",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"vitest": "^1.6.0",
"vitest-github-actions-reporter": "^0.11.1"
},
"peerDependencies": {
"kolmafia": "^5.28100.0"
},
"lint-staged": {
"src/**/*.{ts,js}": "yarn run format"
},
"sideEffects": false,
"packageManager": "[email protected]"
}