-
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.71 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.71 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": "forms-lab",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "bun run --watch src/entrypoints/app/main.ts",
"start": "bun run src/entrypoints/app/main.ts",
"webhook": "bun run src/entrypoints/webhook/main.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:conformance": "bunx playwright test",
"test:all": "bun test && bunx playwright test",
"cli": "bun run src/entrypoints/cli/main.ts",
"build:css": "bun run scripts/build-css.ts",
"build:components": "bun run scripts/build-components.ts",
"build": "bun run build:css && bun run build:components",
"check": "bunx @biomejs/biome check . && bun run --no-warnings tsc --noEmit && bun test && bun run validate:catalog",
"validate:catalog": "bun run scripts/validate-catalog-links.ts",
"lint:css": "bunx stylelint 'src/**/*.css'",
"smoke": "bun run scripts/smoke-check.ts",
"setup-hooks": "bash scripts/install-hooks.sh"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.92",
"@aws-sdk/credential-providers": "^3.1029.0",
"@dagrejs/dagre": "^3.0.0",
"ai": "^6.0.156",
"highlight.js": "^11.11.1",
"hono": "^4.0.0",
"markdown-it": "^14.1.1",
"markdown-it-task-lists": "^2.1.1",
"pdf-lib": "^1.17.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@biomejs/biome": "2.4.10",
"@happy-dom/global-registrator": "^20.9.0",
"@playwright/test": "^1.59.1",
"@types/bun": "latest",
"@types/markdown-it": "^14.1.2",
"@uswds/uswds": "3.13.0",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-declaration-strict-value": "^1.11.1",
"typescript": "^5.3.0"
}
}