-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 KB
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
{
"name": "freestuff",
"version": "2.2.0",
"description": "An API wrapper for the FreeStuff API",
"homepage": "https://docs.freestuffbot.xyz/libraries/node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:bun": "bun build ./src/index.ts --root ./src --outdir ./dist --packages=external --target=node --sourcemap=linked",
"build:tsc": "tsc --declaration --emitDeclarationOnly --outDir dist",
"build": "bun run build:bun && bun run build:tsc",
"prepublish": "bun run build"
},
"author": {
"name": "Andreas May",
"email": "andreas@maanex.me",
"url": "https://maanex.me/"
},
"repository": {
"type": "git",
"url": "https://github.com/FreeStuffBot/api-wrapper-nodejs"
},
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"express": "^5.1.0",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^5.0.3",
"@types/node": "^24.0.10",
"hono": "^4.9.8"
}
}