-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.57 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
64
65
66
67
68
69
{
"name": "@ghom/bot.ts-cli",
"version": "9.1.0",
"description": "CLI for make Discord bots in TypeScript quickly with discord.js",
"main": "bin/index.js",
"bin": {
"bot": "./bin/index.js"
},
"type": "commonjs",
"scripts": {
"build": "rollup -c",
"start": "bun run src/index.ts",
"format": "prettier --write src events.json update-readme.js",
"test": "bun run build && npm pack --pack-destination ./pack",
"prepublishOnly": "bun run format && bun run build"
},
"imports": {
"#src/*": [
"./src/*.ts",
"./bin/*.js"
]
},
"prettier": {
"semi": false
},
"keywords": [
"bot.ts",
"discord",
"bot",
"typescript",
"cli"
],
"author": "ghom",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/bot-ts/cli.git"
},
"bugs": {
"url": "https://github.com/bot-ts/cli/issues"
},
"homepage": "https://ghom.gitbook.io/bot-ts/",
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"boxen": "=5.1.2",
"commander": "^12.1.0",
"degit": "^2.8.4",
"discord-api-types": "^0.37.105",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"figlet": "1.8.0",
"loading-cli": "^1.1.0",
"prettier": "^2.6.2",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"@types/degit": "^2.8.6",
"@types/ejs": "^3.1.5",
"@types/figlet": "1.7.0",
"@types/prettier": "^2.7.3",
"rollup": "^4.27.2",
"types-package-json": "^2.0.39",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=22.x.x"
}
}