-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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": "discord.js-collector-utils",
"version": "1.9.1",
"author": "Kevin Novak",
"description": "Collector utilities for discord.js.",
"license": "MIT",
"private": false,
"engines": {
"node": ">=16.9.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"clean": "git clean -xdf --exclude=\"/config/**/*\"",
"clean:dry": "git clean -xdf --exclude=\"/config/**/*\" --dry-run",
"build": "tsc --project tsconfig.json",
"prepare": "rm -rf dist && npm run build",
"start": "npm run test",
"test": "npm run build && node --enable-source-maps dist/test.js"
},
"peerDependencies": {
"discord.js": ">=14.0.0"
},
"devDependencies": {
"@types/node": "^18.11.10",
"prettier": "^2.8.0",
"tslint": "^6.1.3",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KevinNovak/discord.js-Collector-Utils.git"
},
"keywords": [
"collection",
"collections",
"collector",
"collectors",
"discord",
"discord.js",
"extension",
"extensions",
"util",
"utilities",
"utility"
]
}