-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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.9",
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"discord-api-types": "^0.37.114",
"undici": "^7.2.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typedoc-plugin-mdn-links": "^4.0.6",
"typescript": "^5.7.2"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
]
}