-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.51 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.51 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
{
"name": "agentcrumbs",
"version": "0.1.0",
"description": "Debug tracing for agents. Drop crumbs, follow the trail.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./test": {
"import": "./dist/sinks/memory.js",
"types": "./dist/sinks/memory.d.ts"
}
},
"bin": {
"agentcrumbs": "./dist/cli/index.js",
"intent": "./bin/intent.js"
},
"files": [
"dist",
"skills",
"bin",
"!skills/_artifacts"
],
"repository": {
"type": "git",
"url": "https://github.com/triggerdotdev/agentcrumbs.git"
},
"homepage": "https://agentcrumbs.dev",
"bugs": {
"url": "https://github.com/triggerdotdev/agentcrumbs/issues"
},
"intent": {
"version": 1,
"repo": "triggerdotdev/agentcrumbs",
"docs": "https://docs.agentcrumbs.dev"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"docs:dev": "pnpm -F agentcrumbs-docs dev",
"docs:build": "pnpm -F agentcrumbs-docs build",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^25.3.3",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"keywords": [
"debug",
"tracing",
"agents",
"ai",
"logging",
"observability",
"claude",
"cursor",
"copilot"
]
}