-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.42 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
{
"name": "@hmy-tech/slim-cli",
"bin": {
"slim": "dist/index.js"
},
"type": "module",
"version": "0.3.7-beta",
"description": "",
"main": "./dist/index.js",
"scripts": {
"dev": "npx tsx scripts/prepare.ts && tsc -w",
"build-prod": "bun scripts/prepare.ts && bun build --target=node ./src/index.ts --outfile=dist/index.js --external commander --external dotenv --external inquirer --external mysql2 --external chalk-animation --external fs-extra --external nanospinner --external figlet --external gradient-string --minify",
"link-cli": "bun unlink && bun run build-prod && chmod +x ./dist/index.js && bun link",
"link": "chmod +x ./dist/index.js && bun link @hmy-tech/slim-cli",
"deploy": "bun run build-prod && npm publish --access public"
},
"keywords": [],
"author": "Abdillah Bakari Ali",
"license": "MIT",
"devDependencies": {
"@types/chalk-animation": "^1.6.3",
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.5",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.20",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^5.3.0",
"chalk-animation": "^2.0.3",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"inflection": "^3.0.0",
"inquirer": "^9.2.15",
"mysql2": "^3.9.1",
"nanospinner": "^1.1.0"
}
}