-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.03 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "specr",
"version": "0.1.0",
"description": "Headless REST API for round-trip automation of CSI MasterFormat®-compatible specification documents (UFGS, generic DOCX). Independent project; not affiliated with CSI.",
"type": "module",
"engines": {
"node": ">=24 <25",
"pnpm": ">=11.0.0"
},
"scripts": {
"vendor:scalar": "tsx scripts/vendor-scalar.ts",
"predev": "pnpm vendor:scalar",
"dev": "tsx watch --env-file-if-exists=.env src/index.ts",
"build": "tsc",
"start": "node --env-file-if-exists=.env dist/index.js",
"lint": "eslint src/ && tsc --noEmit && prettier --check src/",
"check:node-pin": "tsx scripts/check-node-pin.ts",
"check:action-pins": "tsx scripts/check-action-pins.ts",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:watch": "vitest --project unit",
"test:coverage": "vitest run --coverage",
"migrate": "node-pg-migrate --tsx --migrations-dir src/db/migrations --envPath .env up",
"migrate:down": "node-pg-migrate --tsx --migrations-dir src/db/migrations --envPath .env down 1",
"seed": "tsx --env-file-if-exists=.env src/db/seed.ts",
"load:files": "tsx --env-file-if-exists=.env scripts/load-files.ts",
"fixture:snapshot": "tsx scripts/fixture-ab.ts snapshot",
"fixture:diff": "tsx scripts/fixture-ab.ts diff",
"gold:verify": "tsx scripts/gold.ts verify",
"gold:bless": "tsx scripts/gold.ts bless",
"seed:corpus": "pnpm load:files 'docs/references/UFGS/**/*.SEC' 'docs/references/UFGS/**/*.sec'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@napi-rs/canvas": "^1.0.1",
"chardet": "^2.1.1",
"docx": "^9.6.1",
"express": "^5.2.1",
"express-rate-limit": "^8.5.1",
"fast-xml-parser": "^5.0.0",
"fast-xml-validator": "^1.1.1",
"iconv-lite": "^0.7.2",
"jszip": "^3.10.0",
"multer": "^2.1.1",
"pdfjs-dist": "^6.0.227",
"pg": "^8.20.0",
"pino": "^10.3.1",
"pino-roll": "^4.0.0",
"piscina": "^5.1.4",
"tesseract.js": "^7.0.0",
"unpdf": "^1.6.2",
"uuid": "^14.0.1",
"yauzl": "^3.3.0",
"zod": "^4.4.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^15.3.6",
"@eslint/js": "latest",
"@redocly/cli": "^2.32.0",
"@types/express": "^5.0.6",
"@types/multer": "^2.2.0",
"@types/node": "^24.13.3",
"@types/pg": "^8.20.0",
"@types/yauzl": "^3.4.0",
"@vitest/coverage-v8": "^4.1.5",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"depcheck": "^1.0.0",
"dotenv": "^17.4.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-sonarjs": "^4.0.3",
"markdown-it": "^14.3.0",
"node-pg-migrate": "^9.0.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.5"
}
}