-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"type": "commonjs",
"name": "@mc-resource/cli",
"author": "mc-resource",
"license": "MIT",
"version": "0.0.1-alpha-5",
"description": "a Resource Manager for Minecraft",
"repository": "https://github.com/mc-resource/cli",
"main": "src/main.ts",
"keywords": [
"cli",
"minecraft",
"versioning",
"package",
"manager",
"resource"
],
"scripts": {
"dev": "tsx src/main.ts",
"build": "tsc",
"format": "prettier . --write",
"format-src": "prettier ./src/ --write",
"link": "tsc && npm link"
},
"bin": {
"mcr": "./dist/main.js"
},
"dependencies": {
"colorts": "^0.1.63",
"commander": "^13.1.0",
"node-fetch": "^3.3.2",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/readline-sync": "^1.4.8",
"prettier": "^3.6.2",
"tsx": "^4.19.2",
"typescript": "^5.8.3"
}
}