-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "shellprint",
"version": "0.0.1",
"description": "Lightweight telemetry for Claude Agent SDK tool calls",
"repository": {
"type": "git",
"url": "git+https://github.com/HenryDotApp/shellprint.git"
},
"homepage": "https://github.com/HenryDotApp/shellprint#readme",
"bugs": {
"url": "https://github.com/HenryDotApp/shellprint/issues"
},
"keywords": [
"anthropic",
"claude",
"agent-sdk",
"telemetry",
"audit"
],
"type": "module",
"files": [
"dist/src"
],
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"example": "npm run build && node dist/example_query.js",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"verify": "npm run build && node dist/verify_hooks.js",
"verify:package": "npm run build && node dist/verify_shellprint.js",
"test": "npm run build && node dist/test_shellprint.js"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "latest"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest",
"dotenv": "latest"
}
}