generated from meza/create-meza-cli
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.49 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
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
{
"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:ci": "biome ci --reporter=github .",
"lint": "tsc --noEmit",
"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.42",
"chalk": "5.3.0",
"commander": "12.1.0",
"core-js": "3.38.1",
"dotenv": "16.4.5",
"glob": "11.0.0",
"hwid": "0.5.0",
"inquirer": "10.2.2",
"log-symbols": "6.0.0",
"minimatch": "10.0.1",
"nodejs-file-downloader": "4.13.0",
"posthog-node": "4.2.0",
"zod": "3.23.8"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"],
"rules": {
"header-max-length": [0, "always", 100]
}
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/prompt-cli": "19.5.0",
"@faker-js/faker": "9.0.3",
"@liudonghua123/pkg": "6.0.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": "13.0.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.0",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/glob": "8.1.0",
"@types/inquirer": "9.0.7",
"@types/is-ci": "3.0.4",
"@types/node": "20.16.10",
"@vitest/coverage-v8": "2.1.1",
"conventional-changelog-conventionalcommits": "8.0.0",
"cross-env": "7.0.3",
"esbuild": "0.24.0",
"is-ci": "3.0.1",
"jest-chance": "0.2.5",
"lefthook": "1.7.17",
"mock-cwd": "1.0.0",
"node-gyp": "10.2.0",
"npm-run-all2": "6.2.3",
"pnpm": "9.11.0",
"rimraf": "6.0.1",
"semantic-release": "24.1.2",
"semantic-release-export-data": "1.1.0",
"ts-node": "10.9.2",
"tsx": "4.19.1",
"typescript": "5.6.2",
"vitest": "2.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/meza/minecraft-mod-manager.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.5.0",
"pnpm": ">=8.0.0"
}
}