libram 0.8.32 → 0.8.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Clan.js +2 -4
- package/dist/Kmail.d.ts +1 -1
- package/dist/actions/ActionSource.d.ts +2 -2
- package/dist/actions/FreeRun.js +3 -3
- package/dist/ascend.d.ts +3 -3
- package/dist/ascend.js +1 -0
- package/dist/challengePaths/2015/CommunityService.js +2 -1
- package/dist/combat.d.ts +4 -4
- package/dist/diet/index.d.ts +5 -5
- package/dist/diet/index.js +2 -2
- package/dist/lib.d.ts +5 -5
- package/dist/logger.d.ts +2 -2
- package/dist/maximize.d.ts +3 -3
- package/dist/modifier.d.ts +2 -2
- package/dist/modifierTypes.d.ts +8 -8
- package/dist/mood.d.ts +1 -1
- package/dist/moonSign.d.ts +1 -1
- package/dist/property.d.ts +1 -1
- package/dist/propertyTypes.d.ts +9 -9
- package/dist/propertyTyping.d.ts +1 -1
- package/dist/resources/2008/Stickers.d.ts +1 -1
- package/dist/resources/2010/CrownOfThrones.d.ts +2 -2
- package/dist/resources/2012/ReagnimatedGnome.d.ts +1 -1
- package/dist/resources/2013/Florist.d.ts +1 -1
- package/dist/resources/2014/CrimboShrub.d.ts +4 -4
- package/dist/resources/2015/ChateauMantegna.d.ts +3 -3
- package/dist/resources/2015/DeckOfEveryCard.d.ts +1 -1
- package/dist/resources/2016/SourceTerminal.d.ts +1 -1
- package/dist/resources/2017/Horsery.d.ts +1 -1
- package/dist/resources/2017/Pantogram.d.ts +6 -6
- package/dist/resources/2017/Spacegate.d.ts +1 -1
- package/dist/resources/2017/TunnelOfLove.d.ts +3 -3
- package/dist/resources/2018/LatteLoversMembersMug.d.ts +2 -2
- package/dist/resources/2018/SongBoom.d.ts +1 -1
- package/dist/resources/2019/BeachComb.d.ts +1 -1
- package/dist/resources/2020/RetroCape.d.ts +2 -2
- package/dist/resources/2022/AutumnAton.d.ts +1 -1
- package/dist/resources/2022/JuneCleaver.d.ts +2 -2
- package/dist/resources/2022/TrainSet.d.ts +1 -1
- package/dist/resources/2023/ClosedCircuitPayphone.d.ts +1 -1
- package/dist/resources/2023/CursedMonkeyPaw.d.ts +1 -1
- package/dist/resources/2024/AprilingBandHelmet.d.ts +2 -2
- package/dist/resources/2024/ChestMimic.d.ts +1 -1
- package/dist/resources/2024/ChestMimic.js +5 -8
- package/dist/resources/2024/MayamCalendar.d.ts +66 -0
- package/dist/resources/2024/MayamCalendar.js +92 -0
- package/dist/resources/index.d.ts +2 -1
- package/dist/resources/index.js +2 -1
- package/dist/url.d.ts +5 -5
- package/dist/utils.d.ts +8 -8
- package/dist/utils.js +2 -1
- package/package.json +38 -39
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "libram",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.34",
|
|
4
4
|
"description": "JavaScript helper library for KoLmafia",
|
|
5
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
7
8
|
"repository": "https://github.com/loathers/libram",
|
|
8
9
|
"author": "Samuel Gaus <sam@gaus.co.uk>",
|
|
@@ -16,60 +17,58 @@
|
|
|
16
17
|
"format": "yarn run prettier --write .",
|
|
17
18
|
"lint": "yarn run eslint src tools --ext .ts && yarn run prettier --check .",
|
|
18
19
|
"test": "yarn run jest",
|
|
19
|
-
"prepack": "yarn run build",
|
|
20
|
-
"updateProps": "
|
|
21
|
-
"updateOverlappingItemSkillNames": "
|
|
20
|
+
"prepack": "yarn run build && pinst --disable",
|
|
21
|
+
"updateProps": "node --loader tsm ./tools/parseDefaultProperties.ts",
|
|
22
|
+
"updateOverlappingItemSkillNames": "node --loader tsm ./tools/parseItemSkillNames.ts",
|
|
23
|
+
"_postinstall": "husky install",
|
|
24
|
+
"postpack": "pinst --enable"
|
|
22
25
|
},
|
|
23
26
|
"files": [
|
|
24
27
|
"dist/**/*.js",
|
|
25
28
|
"dist/**/*.d.ts"
|
|
26
29
|
],
|
|
27
30
|
"dependencies": {
|
|
28
|
-
"html-entities": "^2.
|
|
31
|
+
"html-entities": "^2.5.2"
|
|
29
32
|
},
|
|
30
33
|
"devDependencies": {
|
|
31
|
-
"@babel/compat-data": "^7.
|
|
32
|
-
"@babel/core": "^7.
|
|
33
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.
|
|
34
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
35
|
-
"@babel/preset-env": "^7.
|
|
36
|
-
"@babel/preset-typescript": "^7.
|
|
37
|
-
"@tsconfig/
|
|
34
|
+
"@babel/compat-data": "^7.24.4",
|
|
35
|
+
"@babel/core": "^7.24.5",
|
|
36
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
|
37
|
+
"@babel/plugin-transform-runtime": "^7.24.3",
|
|
38
|
+
"@babel/preset-env": "^7.24.5",
|
|
39
|
+
"@babel/preset-typescript": "^7.24.1",
|
|
40
|
+
"@tsconfig/node20": "^20.1.4",
|
|
38
41
|
"@types/jest": "^29.5.12",
|
|
39
|
-
"@types/lodash-es": "^4.17.
|
|
40
|
-
"@types/node": "^
|
|
41
|
-
"@
|
|
42
|
-
"@typescript-eslint/
|
|
43
|
-
"
|
|
44
|
-
"esbuild": "^0.17.0",
|
|
42
|
+
"@types/lodash-es": "^4.17.12",
|
|
43
|
+
"@types/node": "^20.12.10",
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
45
|
+
"@typescript-eslint/parser": "^7.8.0",
|
|
46
|
+
"esbuild": "^0.21.0",
|
|
45
47
|
"esbuild-plugin-babel": "^0.2.3",
|
|
46
|
-
"eslint": "^8.
|
|
47
|
-
"eslint-config-prettier": "^
|
|
48
|
-
"eslint-import-resolver-typescript": "^
|
|
49
|
-
"eslint-plugin-import": "^2.
|
|
50
|
-
"eslint-plugin-jest": "^
|
|
51
|
-
"eslint-plugin-jsdoc": "^
|
|
52
|
-
"eslint-plugin-libram": "^0.4.
|
|
53
|
-
"husky": "^
|
|
48
|
+
"eslint": "^8.57.0",
|
|
49
|
+
"eslint-config-prettier": "^9.1.0",
|
|
50
|
+
"eslint-import-resolver-typescript": "^3.6.1",
|
|
51
|
+
"eslint-plugin-import": "^2.29.1",
|
|
52
|
+
"eslint-plugin-jest": "^28.5.0",
|
|
53
|
+
"eslint-plugin-jsdoc": "^48.2.3",
|
|
54
|
+
"eslint-plugin-libram": "^0.4.7",
|
|
55
|
+
"husky": "^9.0.11",
|
|
54
56
|
"java-parser": "^1.4.0",
|
|
55
57
|
"jest": "^29.7.0",
|
|
56
|
-
"kolmafia": "^5.
|
|
57
|
-
"lint-staged": "
|
|
58
|
-
"
|
|
59
|
-
"
|
|
58
|
+
"kolmafia": "^5.27934.0",
|
|
59
|
+
"lint-staged": "^15.2.2",
|
|
60
|
+
"lodash-es": "^4.17.21",
|
|
61
|
+
"node-fetch": "^3.3.2",
|
|
62
|
+
"pinst": "^3.0.0",
|
|
63
|
+
"prettier": "^3.2.5",
|
|
60
64
|
"ts-jest": "^29.1.2",
|
|
61
|
-
"
|
|
62
|
-
"typedoc": "^0.
|
|
63
|
-
"typescript": "^4.5
|
|
65
|
+
"tsm": "^2.3.0",
|
|
66
|
+
"typedoc": "^0.25.13",
|
|
67
|
+
"typescript": "^5.4.5"
|
|
64
68
|
},
|
|
65
69
|
"peerDependencies": {
|
|
66
70
|
"kolmafia": "^5.27668.0"
|
|
67
71
|
},
|
|
68
|
-
"husky": {
|
|
69
|
-
"hooks": {
|
|
70
|
-
"pre-commit": "lint-staged"
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
72
|
"lint-staged": {
|
|
74
73
|
"src/**/*.{ts,js}": "prettier --write"
|
|
75
74
|
},
|