-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 801 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 801 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
{
"name": "discit-api-refresh",
"main": "src/index.ts",
"module": "src/index.ts",
"scripts": {
"prepare": "bun run lefthook.ts",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"compile": "bun build --compile --minify --sourcemap src/index.ts --outfile main",
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts"
},
"type": "module",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@evilmartians/lefthook": "^1.11.10",
"@types/jsdom": "^21.1.4",
"@types/uuid": "^9.0.6",
"bun-types": "latest",
"discit-types": "^1.0.0",
"eslint-config-prettier": "^9.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"cron": "^3.1.6",
"jsdom": "^22.1.0",
"uuid": "^9.0.1"
}
}