-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "djs-message-commands",
"version": "1.2.0",
"description": "Build easy, safe, and testable message commands for discord.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "npm run docs:build && npx gh-pages -d docs/.vuepress/dist",
"test": "jest --watch"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Shockch4rge/djs-message-commands.git"
},
"homepage": "https://github.com/Shockch4rge/djs-message-commands#readme",
"keywords": [
"discord",
"discord.js",
"message",
"command",
"commands",
"utility"
],
"author": "Shockch4rge",
"license": "MIT",
"dependencies": {
"discord.js": "^14.5.0",
"to-regex-range": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/to-regex-range": "^5.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.8.3",
"vuepress": "^2.0.0-beta.36"
}
}