-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "comapeo-config-builder-api",
"version": "2.0.5",
"module": "src/index.ts",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir ./dist --target node",
"lint": "biome lint .",
"typecheck": "bun x tsc --noEmit",
"test": "BUN_ENV=test bun test src/tests",
"test:unit": "BUN_ENV=test bun test src/tests/unit",
"test:integration": "BUN_ENV=test bun test src/tests/integration",
"audit": "npm audit --production"
},
"devDependencies": {
"@types/bun": "latest",
"biome": "^0.3.3",
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"dependencies": {
"@elysiajs/cors": "^1.4.0",
"@types/adm-zip": "^0.5.7",
"adm-zip": "^0.5.16",
"elysia": "^1.4.16",
"comapeocat": "1.1.0",
"mapeo-settings-builder": "^6.0.0"
},
"resolutions": {
"cross-spawn": "^7.0.5",
"lodash": "^4.17.21",
"nth-check": "^2.0.1",
"ws": "^8.17.1"
},
"overrides": {
"cross-spawn": "^7.0.5",
"lodash": "^4.17.21",
"nth-check": "^2.0.1",
"ws": "^8.17.1"
}
}