-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"author": "cakedan",
"bugs": {
"url": "https://github.com/detritusjs/client-rest/issues"
},
"files": [
"lib/**/*"
],
"dependencies": {
"detritus-rest": "^0.7.0",
"detritus-utils": "^0.4.0"
},
"description": "A minimalistic TypeScript library to interact with all, or most, of Discord's rest endpoints",
"devDependencies": {
"@types/node": "^14.17.1",
"@types/node-fetch": "^2.5.10",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"homepage": "https://github.com/detritusjs/client-rest#readme",
"keywords": [
"rest",
"library"
],
"license": "MIT",
"main": "lib/index.js",
"name": "detritus-client-rest",
"peerDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/detritusjs/client-rest.git"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"typedoc": "typedoc"
},
"types": "lib/index.d.ts",
"version": "0.10.5"
}