-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@joshghent/allgood",
"type": "module",
"description": "Check your app is Allgood with a beautiful `/healthcheck` page and API.",
"version": "1.0.1",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/joshghent/allgood.git"
},
"homepage": "https://github.com/joshghent/allgood",
"files": [
"dist/**/*"
],
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"scripts": {
"build": "pnpm run build:cjs && pnpm run build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"check": "biome check --write ./src",
"workflow:check": "biome check ./src",
"release": "pnpm run build && changeset publish",
"test": "jest ./src/**/*.test.ts"
},
"author": "Josh Ghent <[email protected]>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "^2.27.7",
"@total-typescript/tsconfig": "^1.0.4",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/lodash.merge": "^4.6.9",
"@types/memcached": "^2.2.10",
"@types/node": "^22.9.1",
"@types/node-os-utils": "^1.3.4",
"express": "^4.19.2",
"fastify": "^4.28.1",
"hono": "^4.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.8.0-dev.20241122"
},
"bugs": {
"url": "https://github.com/joshghent/allgood"
},
"peerDependencies": {
"express": "^4.19.2",
"fastify": "^4.28.1",
"hono": "^4.5.11"
},
"dependencies": {
"diskusage": "^1.2.0",
"ioredis": "^5.4.1",
"knex": "^3.1.0",
"lodash.merge": "^4.6.2",
"memcached": "^2.2.2",
"mysql2": "^3.11.4",
"node-os-utils": "^1.3.7",
"oracledb": "^6.7.0",
"pg": "^8.13.1",
"pg-connection-string": "^2.7.0",
"redis": "^4.7.0",
"sqlite3": "^5.1.7"
}
}