-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.87 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
76
77
78
79
80
81
82
83
84
{
"name": "claude-ward",
"version": "0.2.1",
"description": "Tamper-detection tripwire for Claude Code's local configuration.",
"type": "module",
"license": "MIT",
"author": "Saba Vartasashvili",
"homepage": "https://saba-var.github.io/claude-ward/",
"repository": {
"type": "git",
"url": "git+https://github.com/Saba-Var/claude-ward.git"
},
"bugs": {
"url": "https://github.com/Saba-Var/claude-ward/issues"
},
"keywords": [
"claude",
"claude-code",
"security",
"tamper-detection",
"tripwire",
"mcp",
"supply-chain",
"cli"
],
"engines": {
"node": ">=20"
},
"bin": {
"claude-ward": "./dist/cli.js",
"cward": "./dist/cli.js"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"prepublishOnly": "npm run typecheck && npm run lint && npm test && npm run build",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"chokidar": "^5.0.0",
"commander": "^14.0.0",
"node-notifier": "^10.0.1"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/node-notifier": "^8.0.5",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.9.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vitest": "^2.0.5"
}
}