-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.14 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
{
"name": "omni-notify",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "dotenvx run -- tsx watch src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format .",
"check": "biome check .",
"test": "vitest",
"docker:build": "docker build -t omni-notify .",
"docker:publish": "docker push omni-notify",
"docker:build-and-publish": "pnpm run docker:build && pnpm run docker:publish",
"docker:dev": "docker run -p 3000:3000 --rm --name omni-notify omni-notify"
},
"dependencies": {
"@micthiesen/mitools": "^1.2.1",
"date-fns": "^4.1.0",
"html-entities": "^2.5.2",
"node-cron": "^3.0.3",
"p-queue": "^8.0.1",
"zod": "3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@dotenvx/dotenvx": "^1.2.0",
"@types/node": "20.14.12",
"@types/node-cron": "3.0.11",
"tsx": "^4.7.1",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"engines": {
"node": "20.16.0",
"pnpm": "9.12.0"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["@types/node"]
}
}
}