-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.87 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
{
"name": "@thinkfleet/agentmark",
"version": "0.13.0",
"description": "AI library for any AI-readable surface — web pages, PDFs (text/scanned/AcroForm), audio (transcribed), video (transcribed + frame-captioned), with signature detection. One compact wire format any AI client can read or drive via MCP.",
"type": "commonjs",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": {
"agentmark-mcp": "./dist/src/mcp/cli.js",
"agentmark": "./dist/src/mcp/cli.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ThinkfleetAI/agentmark.git"
},
"homepage": "https://agentmark.dev",
"keywords": [
"agentmark",
"ai",
"agents",
"browser",
"markdown",
"playwright",
"llm",
"wire-format"
],
"scripts": {
"build": "tsc -p tsconfig.lib.json && cp package.json dist/ && cp -R schema dist/",
"lint": "eslint 'src/**/*.ts'",
"test": "vitest run",
"test:watch": "vitest"
},
"files": [
"dist",
"schema",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"js-yaml": "^4.1.0",
"tslib": "2.6.2"
},
"peerDependencies": {
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^4.10.38",
"playwright-core": ">=1.40.0",
"tesseract.js": "^5.1.1"
},
"peerDependenciesMeta": {
"playwright-core": {
"optional": false
},
"pdfjs-dist": {
"optional": true
},
"tesseract.js": {
"optional": true
},
"pdf-lib": {
"optional": true
}
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "20.19.9",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^4.10.38",
"playwright-core": "^1.40.0",
"tesseract.js": "^5.1.1",
"tsx": "^4.21.0",
"typescript": "^5.4.0",
"vitest": "3.0.8"
}
}