-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.68 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
{
"name": "@voidshake/modpack-cli",
"version": "0.0.0-dev",
"description": "CLI to release modpacks",
"main": "dist/index.js",
"exports": "./dist/index.js",
"bin": {
"pack": "dist/cli/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"packageManager": "pnpm@9.9.0",
"scripts": {
"build": "tsc",
"cli": "node dist/cli",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/VoidShake/ModpackCLI.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/VoidShake/ModpackCLI/issues"
},
"homepage": "https://github.com/VoidShake/ModpackCLI#readme",
"dependencies": {
"@types/fs-extra": "^9.0.13",
"@types/minimatch": "^3.0.5",
"archiver": "^5.3.1",
"arg": "^5.0.2",
"axios": "^1.6.7",
"chalk": "^5.0.1",
"command-line-usage": "^6.1.3",
"dotenv": "^16.4.1",
"form-data": "^4.0.0",
"fs-extra": "^10.1.0",
"minimatch": "^5.1.0",
"rimraf": "^3.0.2",
"toml": "^3.0.0",
"typescript": "^4.8.2",
"yaml": "^2.1.3"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/command-line-usage": "^5.0.2",
"@types/node": "^20.11.10",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.23.0",
"eslint-plugin-require-extensions": "^0.1.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1"
}
}