-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ooxml-dev",
"version": "0.1.3",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "vp dev",
"dev:mcp": "bun run --cwd apps/mcp-server dev",
"build": "vp run @ooxml-dev/web#build",
"build:prod": "bun run --cwd apps/web build:prod",
"preview": "vp preview",
"check": "vp check && bun run typecheck",
"lint": "vp lint",
"format": "vp fmt",
"typecheck": "vp run --filter '@ooxml-dev/*' typecheck",
"changeset": "changeset",
"changeset:status": "changeset status --since origin/main",
"release:version": "changeset version",
"release:publish": "changeset publish",
"deploy": "bun run check && bun run --cwd apps/web deploy",
"prepare": "vp config --no-agent",
"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",
"mcp:users": "bun --env-file=.env apps/mcp-server/scripts/users.ts",
"mcp:preset-shapes:generate": "bun scripts/generate-preset-shape-guides.ts",
"mcp:test": "bun test tests/scripts/source-artifact.test.ts tests/mcp-server/tools-list.test.ts tests/mcp-server/opc-parts.test.ts tests/mcp-server/mcp-auth.test.ts tests/mcp-server/oauth-authorization.test.ts tests/mcp-server/preset-shape-guides.test.ts",
"ooxml": "bun apps/cli/src/cli.ts",
"cli:test": "bun test tests/cli/",
"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",
"pdf:test": "python3 -m unittest discover -s tests/ingest-pdf && bun test tests/ingest-pdf/chunk-pages.test.ts",
"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/web/ && bun test tests/db/ && bun test tests/ingest-xsd/ && bun test tests/mcp-server/"
},
"devDependencies": {
"@changesets/cli": "3.0.0",
"fast-xml-parser": "^5.7.2",
"typescript": "7.0.2",
"vite": "catalog:",
"vite-plus": "catalog:"
},
"overrides": {
"vite": "catalog:"
},
"packageManager": "bun@1.3.14",
"catalog": {
"typescript": "7.0.2",
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.9",
"vite-plus": "0.2.9"
}
}