forked from groupme-js/node-groupme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "node-groupme",
"version": "0.0.3",
"description": "The only GroupMe API library that isn't a million years old.",
"main": "dist/index.js",
"scripts": {
"prepare": "npx tsc",
"docs": "typedoc --theme ./node_modules/typedoc-neo-theme/bin/default"
},
"repository": {
"type": "git",
"url": "git+https://github.com/groupme-js/node-groupme.git"
},
"keywords": [
"groupme",
"api",
"node-groupme",
"microsoft"
],
"author": "Peter Currie <peterdcurrie@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/groupme-js/node-groupme/issues"
},
"homepage": "https://groupme.js.org",
"devDependencies": {
"@types/node": "^14.14.27",
"@types/node-fetch": "^2.5.8",
"@types/ws": "^7.4.7",
"typedoc": "^0.21.9",
"typescript": "^4.4.3"
},
"dependencies": {
"@discordjs/collection": "^0.1.6",
"groupme-api-types": "^0.8.2",
"node-fetch": "^2.6.1",
"typedoc-neo-theme": "^1.1.1",
"ws": "^8.1.0"
},
"files": [
"src/",
"dist/",
"typings/"
],
"types": "typings/"
}