This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.8 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
{
"name": "djs-slash",
"version": "0.2.0",
"description": "An application command handler for discord.js v13",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "ts-node -P ./tsconfig.dev.json src/index.ts",
"test": "npm run lint:fix && npm run test:build && npm run mocha",
"test:build": "tsc --noEmit",
"mocha": "mocha -r ts-node/register 'src/**/*.spec.ts'",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "rimraf ./dist && tsc",
"prepack": "npm run build",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tguichaoua/djs-slash.git"
},
"keywords": [
"discord.js",
"djs",
"discord",
"slash",
"command",
"context",
"menu"
],
"author": {
"name": "Tristan Guichaoua",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.7",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"chai": "^4.3.4",
"discord.js": "^13.2.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"lint-staged": "^11.1.1",
"mocha": "^9.0.3",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"discord.js": "^13.2.0"
},
"engines": {
"node": ">=16.6.0"
},
"files": [
"dist"
]
}