-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.63 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
{
"name": "@wumpcord/commands",
"description": "✨ Command routing framework made using Wumpcord.",
"version": "1.0.0",
"main": "build/index.js",
"license": "MIT",
"author": "Chris \"August\" Hernandez <[email protected]>",
"homepage": "https://wump.floofy.dev/commands",
"repository": "https://github.com/wumpcord/commands",
"bugs": "https://github.com/wumpcord/commands/issues",
"types": "index.d.ts",
"funding": {
"url": "https://github.com/auguwu/Wumpcord?sponsor=1"
},
"maintainers": [
{
"name": "Chris \"August\" Hernandez",
"email": "[email protected]",
"url": "https://floofy.dev"
}
],
"engines": {
"node": ">=14"
},
"scripts": {
"clean:node_modules": "rm -rf node_modules/@types/**/node_modules && rm -rf node_modules/@augu/**/node_modules",
"clean:win:tar": "cp node_modules/@augu/collections/build/index.js.* node_modules/@augu/collections/build/index.js && rm node_modules/@augu/collections/build/index.js.*",
"prepare": "npm run build",
"build": "npm run lint && rm -rf build && tsc",
"lint": "eslint src --ext .ts --fix",
"docs": "typedoc src --out docs --theme node_modules/eledoc/bin/default/"
},
"dependencies": {
"@augu/collections": "1.0.5",
"@augu/utils": "1.4.2",
"reflect-metadata": "0.1.13",
"wumpcord": "1.1.2"
},
"devDependencies": {
"@augu/eslint-config": "1.10.0",
"@augu/tsconfig": "1.0.1",
"@types/node": "14.14.37",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"eledoc": "0.2.1",
"eslint": "7.23.0",
"typedoc": "0.20.34",
"typescript": "4.2.3"
}
}