This repository has been archived by the owner on Aug 29, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "@dexare/slash-create",
"version": "1.0.0",
"description": "A Dexare module that uses slash-create to make slash commands",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Snazzah",
"license": "MIT",
"repository": "https://github.com/Dexare/slash-create",
"bugs": {
"url": "https://github.com/Dexare/slash-create/issues"
},
"funding": {
"url": "https://github.com/sponsors/Snazzah"
},
"keywords": [
"dexare",
"dexare-module"
],
"scripts": {
"build": "([ ! -d \"lib/\" ] || rm -r lib/*) && npx tsc",
"build:prepare": "[ -d \"lib/\" ] || npm run build",
"changelog": "ts-node scripts/changelog",
"lint": "npx eslint --ext .ts ./src",
"lint:fix": "npx eslint --ext .ts ./src --fix",
"test": "mocha -r ts-node/register --extension ts",
"prepare": "npx husky install && npm run build:prepare",
"prepublishOnly": "([ -d \"lib/\" ] || (echo \"lib folder does not exist\" && exit 1)) && npm run lint:fix"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"dependencies": {
"@discordjs/collection": "^0.2.0",
"dexare": "^2.0.1",
"lodash.uniq": "^4.5.0",
"slash-create": "^3.3.0"
},
"devDependencies": {
"@types/lodash.uniq": "^4.5.6",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"ts-node": "^10.0.0",
"typescript": "^4.1.3",
"yarn": "^1.22.10"
}
}