tamperward 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "tamperward",
3
+ "version": "1.0.0",
4
+ "description": "The deterministic agent-integrity gate. One ruleset, evaluated on the actual diff/commands as a verdict, enforced everywhere a change can be made.",
5
+ "license": "Apache-2.0",
6
+ "author": "hexrift",
7
+ "homepage": "https://github.com/hexrift/tamperward#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/hexrift/tamperward.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/hexrift/tamperward/issues"
14
+ },
15
+ "keywords": [
16
+ "ai-agents",
17
+ "agent-safety",
18
+ "code-integrity",
19
+ "guardrails",
20
+ "claude-code",
21
+ "pre-commit",
22
+ "ci",
23
+ "static-analysis",
24
+ "reward-hacking",
25
+ "tests"
26
+ ],
27
+ "type": "module",
28
+ "bin": {
29
+ "tamperward": "dist/cli/index.js"
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "LICENSE",
34
+ "NOTICE"
35
+ ],
36
+ "engines": {
37
+ "node": ">=18"
38
+ },
39
+ "scripts": {
40
+ "build": "esbuild src/cli/index.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/cli/index.js",
41
+ "prepublishOnly": "npm run build",
42
+ "typecheck": "tsc -p tsconfig.json --noEmit",
43
+ "test": "vitest run",
44
+ "test:watch": "vitest",
45
+ "check": "node dist/cli/index.js check"
46
+ },
47
+ "dependencies": {
48
+ "picomatch": "^4.0.2",
49
+ "typescript": "^5.6.3",
50
+ "yaml": "^2.6.1"
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^20.14.0",
54
+ "@types/picomatch": "^3.0.1",
55
+ "esbuild": "^0.24.0",
56
+ "vitest": "^2.1.8"
57
+ }
58
+ }