-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.53 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
{
"name": "@wumpcord/rest",
"description": "🥀 Standalone package for Discord's REST and CDN made for Wumpcord",
"version": "1.3.0",
"main": "build/index.js",
"author": "August <[email protected]>",
"license": "MIT",
"types": "index.d.ts",
"repository": "https://github.com/wumpcord/rest",
"bugs": "https://github.com/wumpcord/rest",
"files": [
"build/",
"index.d.ts"
],
"funding": {
"url": "https://github.com/sponsors/auguwu"
},
"maintainers": [
"Chris \"August\" Hernandez <[email protected]>"
],
"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 clean:node_modules && npm run build",
"docgen": "typedoc src/index.ts --out ./docs",
"build": "npm run lint && rm -rf build && tsc",
"lint": "eslint src --ext .ts --fix"
},
"dependencies": {
"@augu/collections": "1.1.0",
"@augu/orchid": "3.1.1",
"@augu/utils": "1.5.6",
"form-data": "4.0.0"
},
"devDependencies": {
"@augu/eslint-config": "3.0.0",
"@augu/tsconfig": "1.2.0",
"@types/node": "20.12.4",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"eslint": "8.23.0",
"husky": "9.0.11",
"typedoc": "0.25.12",
"typescript": "5.1.6"
}
}