-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.61 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
{
"name": "discord_deploy",
"version": "2.0.1",
"readme": "./README.md",
"repository": {
"url": "https://github.com/felipee-monteiro/discord_deploy"
},
"bin": {
"discord_deploy": "./bin/cli.js"
},
"files": [
"./bin/cli.js",
"LICENSE",
"README.md"
],
"description": "A CLI to deploy slash guild commands easily.",
"main": "./bin/cli.js",
"type": "module",
"scripts": {
"dev": "npx tsc -w",
"test:e2e": "npx c8 ava __tests__/e2e.test.js",
"test:unit": "set NODE_OPTIONS=--experimental-vm-modules && set NODE_ENV=test && npx jest unit.test.js",
"lint": "eslint .",
"prod": "node bin\\cli.js deploy",
"build": "npx tsc && npx tsup-node",
"prepack": "npm run build && npm link && npx discord_deploy deploy"
},
"keywords": [
"slash commands",
"discord",
"cli",
"bot",
"deploy",
"commands",
"discord.js",
"eris"
],
"author": "felipee-monteiro",
"license": "MIT",
"dependencies": {
"ansi-styles": "^6.2.1",
"cac": "^6.7.14",
"dotenv": "^16.0.3",
"esbuild": "^0.25.0",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.0",
"lodash.foreach": "^4.5.0",
"lodash.map": "^4.6.0",
"node-fetch": "^3.3.1",
"ora": "^6.2.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/fs-extra": "^11.0.1",
"@types/lodash.foreach": "^4.5.7",
"@types/lodash.map": "^4.6.13",
"@types/node": "^18.15.3",
"@types/node-fetch": "^2.6.2",
"ava": "^5.2.0",
"discord.js": "^14.8.0",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"typescript": "^5.0.2"
}
}