-
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.07 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.07 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": "offbook",
"version": "0.0.0",
"private": true,
"engines": {
"bun": ">=1.3"
},
"type": "module",
"bin": {
"offbook": "bin/offbook"
},
"imports": {
"#src/*": "./src/*",
"#scripts/*": "./scripts/*",
"#demo-app/*": "./demo-app/*"
},
"scripts": {
"test": "bun test",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"mutate": "stryker run",
"demo-app:build": "bun build demo-app/src/main.tsx --outdir demo-app/dist --target browser",
"demo-app": "bun demo-app/serve.ts"
},
"dependencies": {
"@asyncapi/parser": "^3.6.0",
"aedes": "^0.51.3",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"hono": "^4.6.0",
"json-schema-faker": "0.6.3",
"mqtt-pattern": "^1.2.0",
"yaml": "^2.5.0"
},
"devDependencies": {
"@asyncapi/specs": "^6.11.1",
"@biomejs/biome": "2.5.6",
"@hughescr/stryker-bun-runner": "^1.3.8",
"@stryker-mutator/core": "^9.6.1",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"bun-types": "^1.3.14",
"mqtt": "^5.10.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^7.0.2"
}
}