-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.62 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.62 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
{
"name": "agent-trajectories",
"version": "0.5.7",
"description": "Capture the complete train of thought of agent work as first-class artifacts",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./sdk": {
"types": "./dist/sdk/index.d.ts",
"import": "./dist/sdk/index.js",
"default": "./dist/sdk/index.js"
}
},
"bin": {
"trail": "dist/cli/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [
"agent",
"trajectory",
"ai",
"claude",
"llm",
"debugging",
"tracing",
"sdk",
"agentic"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AgentWorkforce/trajectories"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"commander": "^12.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@agent-relay/sdk": "^4.0.4",
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsup": "^8.5.1",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"lint-staged": {
"*.{js,ts,json,md}": "biome check --write --no-errors-on-unmatched"
}
}