-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 847 Bytes
/
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
{
"name": "foundry-cli",
"version": "0.1.0",
"description": "A CLI tool for initializing Minecraft plugins",
"main": "dist/index.js",
"type": "module",
"bin": {
"foundry": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "tsx src/index.ts",
"link": "npm link",
"clean": "rm -rf dist",
"prepare": "npm run build",
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"ora": "^7.0.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"prettier": "^3.1.0",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
}
}