-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2 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
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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "tscord",
"version": "2.0.2",
"description": "A fully-featured discord bot template written in Typescript, intended to provide a framework that's easy to use, extend and modify",
"main": "lib/index.js",
"bin": {
"tscord": "./lib/index.js"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barthofu/tscord-cli.git"
},
"keywords": [
"tscord",
"cli",
"discord",
"bot",
"template",
"discord.js"
],
"author": {
"name": "Bartholomé Gili",
"email": "dev.bartho@gmail.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/barthofu/tscord-cli/issues"
},
"homepage": "https://tscord.discbot.app/docs/cli",
"scripts": {
"build": "npm run build:clean && npm run type:check && npm run build:compile",
"build:clean": "rimraf lib",
"build:compile": "swc ./src -d ./lib -D",
"type:check": "tsc --pretty --skipLibCheck --noEmit",
"dev": "swc src -w -d lib",
"start": "node lib/index.js",
"test": "echo \"No test specified\" && exit 0",
"release": "npm run build && np --no-2fa"
},
"dependencies": {
"@octokit/request": "^6.2.1",
"axios": "^0.27.2",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"commander": "^9.4.1",
"inquirer": "^8.0.1",
"log-symbols": "^3.0.0",
"node-plop": "~0.26.0",
"oneline": "^1.0.3",
"ora": "^5.1.2",
"plop": "^2.7.0",
"semver": "^7.4.0",
"simple-git": "^3.16.0",
"spawnise": "^1.1.0",
"tar": "^6.1.11"
},
"devDependencies": {
"@types/cli-table": "^0.3.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.7.23",
"@types/semver": "^7.3.13",
"@types/tar": "^6.1.3",
"@types/terminal-link": "^1.2.0",
"ncp": "^2.0.0",
"np": "^7.7.0",
"rimraf": "^3.0.2",
"swc": "^1.0.11",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
}
}