-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 981 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 981 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
30
31
32
33
34
{
"name": "goose-api",
"version": "2.1.15",
"description": "GoOSe API service",
"author": "GoOSe <scripter@me.com>",
"module": "src/main.ts",
"type": "module",
"license": "MIT",
"private": false,
"scripts": {
"dev:util": "NODE_ENV=development bun run --bun src/util.ts",
"dev:preview": "NODE_ENV=development bun run --bun src/main.ts",
"prebuild": "rm -rf ./dist",
"build": "bun run --bun ./src/build.ts",
"prod:util": "NODE_ENV=production bun run --bun dist/util.js",
"prod:preview": "NODE_ENV=production bun run --bun dist/main.js",
"test": "bun test",
"test:watch": "bun test --watch"
},
"dependencies": {
"sharp": "^0.35.4"
},
"devDependencies": {
"@types/bun": "latest",
"@types/jsonwebtoken": "^9.0.10",
"@types/minimist": "^1.2.5",
"bcryptjs": "^3.0.3",
"elysia": "^1.4.30",
"jsonwebtoken": "^9.0.3",
"logixlysia": "^6.8.1",
"minimist": "^1.2.8",
"typescript": "^7.0.2"
}
}