-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.36 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.36 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": "@icjia/filecap",
"version": "1.19.1",
"description": "File inventory CLI for accessibility audit scoping",
"keywords": [
"accessibility",
"a11y",
"wcag",
"pdf",
"inventory",
"audit",
"icjia"
],
"license": "MIT",
"author": "Illinois Criminal Justice Information Authority (ICJIA)",
"repository": {
"type": "git",
"url": "git+https://github.com/ICJIA/filecap-cli.git"
},
"homepage": "https://github.com/ICJIA/filecap-cli#readme",
"bugs": "https://github.com/ICJIA/filecap-cli/issues",
"type": "module",
"bin": {
"filecap": "./bin/filecap.js"
},
"main": "./src/index.js",
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src test bin",
"format": "prettier --write src test bin"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^12.1.0",
"exceljs": "^4.4.0",
"fast-xml-parser": "^5.7.3",
"jszip": "^3.10.1",
"p-limit": "^5.0.0",
"pdfjs-dist": "^4.10.38",
"zod": "^3.23.8"
},
"devDependencies": {
"docx": "^9.6.1",
"eslint": "^9.0.0",
"pdf-lib": "^1.17.1",
"prettier": "^3.2.0",
"vitest": "^4.1.5"
}
}