forked from miramallows/patreon-discord
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 685 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 685 Bytes
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
{
"name": "patreon-discord",
"author": "miramallows",
"license": "MIT",
"version": "0.0.6",
"description": "a patreon api v2 wrapper that helps you grab your patrons' data easily without hassle.",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node index.js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.11.16",
"typescript": "^5.3.3"
},
"dependencies": {
"node-fetch": "^3.3.2"
},
"engines": {
"node": ">=18.x"
},
"repository": {
"url": "https://github.com/miramallows/patreon-discord"
}
}