create-guilded-bot/packages/cli/package.json

43 lines
1,007 B
JSON
Raw Normal View History

{
2022-11-20 06:54:08 +00:00
"name": "create-guilded-bot",
2022-11-21 16:28:04 +00:00
"version": "0.2.2",
"description": "",
2022-11-21 09:25:34 +00:00
"main": "dist/src/index.js",
"bin": {
"create-guilded-bot": "dist/src/index.js"
},
"scripts": {
2022-11-22 11:13:18 +00:00
"build": "rm -rf dist && tsc",
2022-11-22 09:06:12 +00:00
"dev": "ts-node-dev ./src/index.ts",
"start": "ts-node ./src/index.ts"
},
"keywords": [],
"author": "",
2022-11-20 07:02:27 +00:00
"license": "MIT",
2022-11-21 09:26:44 +00:00
"files": [
"dist/*"
],
"dependencies": {
2022-11-19 17:09:20 +00:00
"axios": "^1.1.3",
2022-11-22 09:06:12 +00:00
"eslint-config-custom": "workspace:*",
"fs-extra": "^10.1.0",
"inquirer": "8.2.3",
2022-11-20 06:50:11 +00:00
"kleur": "^4.1.5",
"got": "11.8.1",
"gradient-string": "^2.0.2",
"unzip-stream": "^0.3.1"
},
"devDependencies": {
2022-11-19 17:37:53 +00:00
"@types/fs-extra": "^9.0.13",
2022-11-20 06:50:11 +00:00
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "8.2.3",
"@types/node": "^18.11.9",
"@types/prompt": "^1.1.4",
2022-11-20 06:50:11 +00:00
"@types/unzip-stream": "^0.3.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig": "workspace:*",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
2022-11-20 06:50:11 +00:00
}