forked from EnigmaticaModpacks/Enigmatica2Expert
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.46 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.46 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"type": "module",
"private": true,
"packageManager": "pnpm@10.17.0",
"files": [
"./**/*js"
],
"scripts": {
"🧱build": "tsx dev/make_pack.ts",
"⚡dobious-perf": "sed -i 's/NBTTagImprovements=true/NBTTagImprovements=false/' config/stellar_core.cfg && git update-index --assume-unchanged config/stellar_core.cfg",
"dev": "tsx dev/build/run-dev.ts",
"dev:benchmark": "mc-benchmark > dev/benchmarks/latest.md",
"dev:conflicts": "grep 'conflicts with' crafttweaker.log | sort | uniq | grep -Evf dev/tools/conflict.ignore | sed \"s/^[^ ]* //\" >&2",
"dev:errors": "mctools-errors --config=dev/tools/mct-errors-config.yml --output=dev/tools/unresolved-errors.log",
"dev:ftbq_cleanup": "tsx mc-tools/scripts/ftbq_cleanup.ts",
"dev:inject_js": "tsx dev/automation/Inject_JS.ts",
"dev:jei": "tsx dev/automation/jei.ts",
"dev:jer": "tsx dev/automation/jer.ts",
"dev:manifest": "mctools-manifest --verbose --ignore=dev/.devonly.ignore",
"dev:misc": "tsx dev/automation/misc.ts",
"dev:modlist": "mctools-modlist --old=../E2E-unchanged/minecraftinstance.json --verbose --ignore=dev/.devonly.ignore --template=dev/tools/modlist_template.md --sort=addonID",
"dev:tcon": "mctools-tcon --default=dev/default_configs/tweakersconstruct.cfg --tweaks=dev/tools/tcon/tweaks --save=dev/tools/tcon/stats",
"tips:sync": "tsx dev/hooks/tips.ts",
"prepare": "husky",
"tellme-prune": "bash -c \"for prefix in $(ls -1 config/tellme/*.csv | xargs -n 1 basename | sed -e 's/_[0-9].*\\\\.csv$//' -e 's/\\\\.csv$//' | sort -u); do ls -1 config/tellme/\\\"${prefix}\\\"*.csv | sort -r | tail -n +2 | xargs -r rm; done\"",
"reducer": "mctools-reducer"
},
"dependencies": {
"cheerio": "^1.2.0",
"markdown-it": "^14.1.1",
"mdimg": "1.5.0",
"puppeteer": "^24.42.0",
"tsx": "^4.21.0"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@clack/prompts": "^1.2.0",
"@conventional-changelog/git-client": "^2.7.0",
"@mctools/errors": "^1.0.0",
"@mctools/eslint-plugin-zs": "workspace:*",
"@mctools/manifest": "^0.0.0",
"@mctools/modlist": "^0.1.2",
"@mctools/reducer": "^0.0.0",
"@mctools/tcon": "^0.0.0",
"@types/fs-extra": "^11.0.4",
"@types/language-name-map": "^0.3.4",
"@types/node": "^25.6.0",
"@types/picomatch": "^4.0.3",
"@types/ssh2-sftp-client": "^9.0.6",
"@types/yargs": "^17.0.35",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"citty": "^0.2.2",
"consola": "^3.4.2",
"conventional-changelog": "^7.2.0",
"conventional-changelog-writer": "^8.4.0",
"conventional-commits-parser": "^6.4.0",
"csv-parse": "^6.2.1",
"eslint": "9.39.4",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.4",
"humanize-string": "^3.1.0",
"husky": "^9.1.7",
"ignore": "^7.0.5",
"language-name-map": "^0.3.0",
"lint-staged": "^16.4.0",
"listr2": "^9.0.5",
"lodash": "^4.18.1",
"log-update": "^8.0.0",
"mc-benchmark": "^2.2.1",
"pathe": "^2.0.3",
"picomatch": "^4.0.4",
"prismarine-nbt": "^2.8.0",
"replace-in-file": "^8.4.0",
"simplify-js": "^1.2.4",
"ssh2-sftp-client": "^12.1.1",
"table": "^6.9.0",
"tinyglobby": "^0.2.16",
"typescript": "^6.0.3",
"xml-js": "^1.6.11",
"yaml": "^2.8.3",
"yargs": "^18.0.0",
"zx": "^8.8.5"
},
"lint-staged": {
"resources/tips/lang/en_us.lang": [
"tsx dev/hooks/tips.ts",
"git add resources/tips/lang/*_*.lang config/anothertips.cfg"
]
}
}