forked from DarkPacks/SkyFactory-5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.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
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
{
"name": "skyfactory-5",
"version": "5.0.0",
"private": true,
"description": "",
"author": "DarkPacks",
"scripts": {
"format:fix:direct": "prettier --ignore-unknown --write --log-level=warn \"**/*.@(cjs|js|json|json5|jsonc|jsx|mcmeta|mjs|properties|toml|ts|tsx)\"",
"format:validate:direct": "prettier --ignore-unknown --check --log-level=warn \"**/*.@(cjs|js|json|json5|jsonc|jsx|mcmeta|mjs|properties|toml|ts|tsx)\"",
"generate": "npm install && plop",
"lint:direct": "npm run format:validate:direct && jest --config jest-eslint.config.js",
"lint:fix:direct": "npm run format:fix:direct && cross-env FIX=true jest --config jest-eslint.config.js",
"lint:fix": "npm install && npm run lint:fix:direct",
"lint": "npm install && npm run lint:direct",
"prepare": "husky install",
"release": "npm install && cross-env NODE_ENV=production ts-node ./scripts/release/index.ts",
"release:dev": "npm install && cross-env NODE_ENV=development ts-node ./scripts/release/index.ts",
"setup:node": "npm install && ts-node ./scripts/nvm",
"start": "npm install && ts-node ./scripts/start",
"symlink": "npm install && ts-node ./scripts/symlink-minecraft"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarkPacks/SkyFactory-5.git"
},
"bugs": {
"url": "https://github.com/DarkPacks/SkyFactory-5/issues"
},
"homepage": "https://github.com/DarkPacks/SkyFactory-5#readme",
"type": "commonjs",
"devDependencies": {
"@crutchcorn/plop": "^4.1.0-alpha.1",
"@iarna/toml": "^2.2.5",
"@swc/core": "^1.3.78",
"@types/archiver": "^6.0.2",
"@types/iarna__toml": "^2.0.5",
"@types/inquirer": "^9.0.3",
"@types/lodash": "^4.14.198",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^20.9.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vscode/sudo-prompt": "^9.3.1",
"any-eslint-parser": "^1.0.1",
"archiver": "^6.0.1",
"chalk": "^4.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-json-schema-validator": "^4.6.0",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-regex": "^1.10.0",
"eslint-plugin-toml": "^0.5.0",
"eslint-plugin-typescript-paths": "^0.0.33",
"eslint-plugin-unicorn": "^48.0.1",
"glob": "^7.2.3",
"globify-gitignore": "^1.0.3",
"husky": "^8.0.3",
"is-elevated": "^3.0.0",
"jest": "^29.6.3",
"jest-runner-eslint": "^1.1.0",
"jest-silent-reporter": "^0.5.0",
"json-schema-to-typescript": "^13.0.2",
"json5": "^2.2.3",
"lint-staged": "^14.0.1",
"lodash": "^4.17.21",
"minecraft-launcher-core": "3.18.1",
"msmc": "5.0.5",
"nbt-ts": "^1.3.6",
"node-plop": "^0.32.0",
"prettier": "^3.0.2",
"prettier-plugin-properties": "^0.2.0",
"prettier-plugin-toml": "^1.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.2",
"typescript": "^5.1.6"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write --log-level=warn",
"*.{bak,cjs,config,js,json,json5,jsonc,jsx,mcmeta,mjs,toml,ts,tsx,zs}": "eslint --fix --quiet"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}