-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "weave-claude-plugin",
"version": "0.1.2",
"description": "Track Claude Code sessions in Weave for observability and debugging",
"type": "module",
"main": "dist/index.js",
"bin": {
"weave-claude-plugin": "dist/cli.js"
},
"scripts": {
"build": "tsc && node scripts/build/copy-version-module.mjs",
"build:watch": "tsc --watch",
"dev": "tsx src/cli.ts",
"secrets:scan": "gitleaks dir . --no-banner --redact",
"secrets:scan:staged": "gitleaks git --pre-commit --staged --redact --verbose",
"check": "npm run build && npm run secrets:scan",
"setup-hooks": "node scripts/install-git-hooks.mjs"
},
"dependencies": {
"uuidv7": "1.2.1",
"weave": "^0.12.1"
},
"devDependencies": {
"@types/node": "^24.12.2",
"tsx": "^4.19.0",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=24.14.0"
},
"files": [
"dist/",
"hooks/",
"skills/",
".claude-plugin/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wandb/claude_code_weave_plugin.git"
},
"license": "MIT"
}