-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.9 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.9 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
{
"name": "ooxml-dev",
"private": true,
"version": "0.1.3",
"type": "module",
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"dev": "bun run --cwd apps/web dev",
"dev:mcp": "bun run --cwd apps/mcp-server dev",
"build": "bun run --cwd apps/web build",
"preview": "bun run --cwd apps/web preview",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "bun run --cwd apps/web typecheck && bun run --cwd apps/mcp-server typecheck && bun run --cwd packages/shared typecheck",
"release": "semantic-release",
"deploy": "bun run format && bun run lint && bun run --cwd apps/web deploy",
"prepare": "lefthook install",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:reset": "docker compose down -v && docker compose up -d",
"db:shell": "docker compose exec db psql -U postgres -d ecma_spec",
"db:migrate": "bun scripts/db-migrate.ts",
"sources:sync": "bun scripts/sources-sync.ts",
"pdf:ingest": "bun scripts/ingest-pdf/pipeline.ts",
"pdf:chunk": "bun scripts/ingest-pdf/chunk.ts",
"pdf:embed": "bun scripts/ingest-pdf/embed.ts",
"pdf:upload": "bun scripts/ingest-pdf/upload.ts",
"pdf:setup": "pip install -r scripts/requirements.txt",
"xsd:fetch": "bun scripts/ingest-xsd/fetch.ts",
"xsd:ingest": "bun scripts/ingest-xsd/ingest.ts",
"test": "export TEST_DATABASE_URL=${TEST_DATABASE_URL:-postgresql://postgres:postgres@localhost:5432/ecma_spec} && bun test tests/db/ && bun test tests/ingest-xsd/ && bun test tests/mcp-server/"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"fast-xml-parser": "^5.7.2",
"lefthook": "^2.0.16",
"semantic-release": "^25.0.2",
"typescript": "~5.9.3"
}
}