-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
55
56
57
58
{
"name": "gdd.js",
"version": "0.0.1-beta",
"description": "Interact with the Guilded.gg API with ease and flexibility.",
"main": "./src/index.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"docs": "typedoc --tsconfig typedoc.json --theme node_modules/eledoc/bin/default/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RemyK888/gdd.js.git"
},
"keywords": [
"gdd.js",
"guilded",
"guilded.gg",
"guilded",
"api",
"discord",
"api",
"discord.js"
],
"author": "RemyK",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/RemyK888/gdd.js/issues"
},
"homepage": "https://www.gddjs.remyk.net/",
"dependencies": {
"form-data": "^3.0.1",
"fs": "^0.0.1-security",
"node-fetch": "^2.6.1",
"ws": "^8.2.1"
},
"devDependencies": {
"@types/node-fetch": "^2.5.12",
"@types/ws": "^7.4.7",
"eledoc": "^0.2.1",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.21.9",
"typedoc-plugin-as-member-of": "^1.0.2",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=v12.x"
}
}