-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "snowtransfer",
"version": "0.10.7",
"description": "Minimalistic Rest client for the Discord Api",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=14.18.0"
},
"keywords": [
"discord",
"api",
"rest",
"http",
"microservice",
"discord bot",
"discord bot microservice",
"microservice bot"
],
"scripts": {
"build:src": "tsup src/index.ts --clean --dts --sourcemap --format cjs --target node14 --minify-whitespace --minify-syntax --treeshake && node ./sourceMapPostProcess.js",
"build:docs": "typedoc --name SnowTransfer --excludeExternals --sort static-first --sort alphabetical"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DasWolke/SnowTransfer.git"
},
"bugs": "https://github.com/DasWolke/SnowTransfer/issues",
"author": "wolke <wolke@weeb.sh>",
"license": "MIT",
"dependencies": {
"discord-api-types": "^0.37.98",
"undici": "^6.19.8"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"tsup": "^8.2.4",
"typedoc": "^0.26.6",
"typedoc-plugin-mdn-links": "^3.2.10",
"typescript": "^5.5.4"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
]
}