-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "@braintied/agentlog",
"version": "0.2.1",
"description": "AgentLog — Open standard for AI agent session interchange. Schema, types, validation, and converters.",
"homepage": "https://github.com/braintied/agentlog",
"repository": {
"type": "git",
"url": "https://github.com/braintied/agentlog.git"
},
"type": "module",
"license": "Apache-2.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./convert/claude-code": {
"types": "./dist/convert/claude-code.d.ts",
"import": "./dist/convert/claude-code.js"
},
"./convert/watchtower": {
"types": "./dist/convert/watchtower.d.ts",
"import": "./dist/convert/watchtower.js"
},
"./schemas/agentlog.schema.json": "./schemas/agentlog.schema.json"
},
"files": [
"dist",
"src",
"schemas",
"spec"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsup": "^8.3.0",
"typescript": "^5.7.0"
}
}