This repository was archived by the owner on Sep 18, 2024. It is now read-only.
forked from meza/minecraft-mod-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.8 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.8 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@meza/minecraft-mod-manager",
"version": "0.0.0",
"exports": {
".": {
"import": {
"types": "dist/types/index.d.ts",
"default": "dist/index.js"
}
}
},
"bin": {
"minecraft-mod-updater": "dist/index.js"
},
"license": "GPL-3.0",
"type": "module",
"types": "dist/index.d.ts",
"private": false,
"scripts": {
"build": "esbuild ./src/ --bundle --target=esnext --platform=node --outfile=dist/mmm.cjs --external:@meza/curseforge-fingerprint",
"build:binaries": "cross-env PKG_CACHE_PATH=.cache/pkg pkg dist/mmm.cjs --no-native-build -c ./.pkgrc.json -t latest-win,latest-linux,latest-macos --options \"no-warnings\" -o dist/pkg/mmm",
"start": "tsx src/index.ts",
"commit": "cz",
"ci": "npm-run-all --parallel -c lint report",
"clean": "npm-run-all clean:basics",
"clean:all": "npm-run-all clean:basics clean:cache clean:githooks clean:dependencies clean:reports",
"clean:basics": "rimraf dist",
"clean:cache": "rimraf .cache",
"clean:reports": "rimraf reports",
"clean:githooks": "lefthook uninstall",
"clean:dependencies": "rimraf node_modules",
"lint:specific": "eslint --ext .ts --ext .json --cache --cache-location .cache/",
"lint:eslint": "pnpm lint:specific src test",
"lint:tsc": "tsc --noEmit",
"lint:fix": "pnpm lint:eslint --fix && pnpm lint:tsc",
"lint": "npm-run-all --parallel lint:eslint lint:tsc",
"test": "npm-run-all --parallel test:*",
"test:unit": "vitest",
"report": "vitest --coverage",
"semantic-release": "semantic-release",
"release": "semantic-release",
"prepare": "lefthook install"
},
"dependencies": {
"@meza/curseforge-fingerprint": "^1.1.1",
"chalk": "^5.0.1",
"commander": "^11.0.0",
"core-js": "^3.25.3",
"dotenv": "^16.0.3",
"glob": "^10.0.0",
"inquirer": "^9.1.2",
"log-symbols": "^6.0.0",
"minimatch": "^9.0.0",
"nodejs-file-downloader": "^4.10.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
0,
"always",
100
]
}
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@commitlint/prompt-cli": "18.6.1",
"@faker-js/faker": "8.4.1",
"@meza/adr-tools": "1.0.10",
"@meza/tsconfig-base": "1.1.0",
"@ryansonshine/commitizen": "4.2.8",
"@ryansonshine/cz-conventional-changelog": "3.3.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "11.1.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.6",
"@semantic-release/npm": "11.0.2",
"@semantic-release/release-notes-generator": "12.1.0",
"@types/glob": "^8.1.0",
"@types/inquirer": "^9.0.2",
"@types/is-ci": "^3.0.0",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"@vitest/coverage-v8": "0.34.6",
"cross-env": "^7.0.3",
"esbuild": "0.20.0",
"eslint": "8.56.0",
"eslint-config-tailored-tunes": "5.0.2",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-security": "1.7.1",
"is-ci": "3.0.1",
"jest-chance": "0.2.5",
"lefthook": "1.6.1",
"mock-cwd": "1.0.0",
"node-gyp": "^10.0.0",
"npm-run-all2": "6.1.2",
"pkg": "5.8.1",
"pnpm": "8.15.3",
"rimraf": "5.0.5",
"semantic-release": "23.0.2",
"semantic-release-export-data": "1.0.1",
"ts-node": "10.9.2",
"tsx": "4.7.1",
"typescript": "5.3.3",
"vitest": "0.34.6"
},
"repository": {
"type": "git",
"url": "https://github.com/meza/minecraft-mod-manager.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.5.0",
"pnpm": ">=8.0.0"
}
}