-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.3 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
{
"name": "@lambdacurry/anvil",
"version": "0.1.0-alpha.20",
"description": "AI rules + engineering guardrails audit engine for AI-assisted codebases",
"keywords": [
"agents",
"ai-rules",
"audit",
"claude",
"cursor"
],
"homepage": "https://github.com/lambda-curry/anvil",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lambda-curry/anvil"
},
"bin": {
"anvil": "./bin/anvil.ts"
},
"files": [
"bin",
"scripts/audit.ts",
"scripts/bootstrap-detect.ts",
"scripts/bootstrap-generate.ts",
"scripts/drift-detect.ts",
"scripts/lib",
"scripts/mine-pr-rules.ts",
"scripts/repo-audit.ts",
"scripts/verify-first-user-proof.ts",
"docs/bootstrap-templates",
"docs/getting-started.md",
"docs/byok-trust-model.md",
"docs/first-user-proof.md",
"docs/first-user-proof-packet.md",
"docs/proofs/README.md",
"docs/proofs/current-outside-tester-send-packet.md",
"docs/proofs/first-user-proof-template.md",
"docs/rubric.md",
"docs/operator-contract.md",
"docs/tooling-contract.md",
"README.md",
"LICENSE"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"audit": "bun run scripts/audit.ts",
"format": "oxfmt --write bin scripts package.json tsconfig.json .github/workflows",
"release:pin": "bun run scripts/release-pin.ts",
"lint": "oxlint --quiet bin scripts",
"lint:advisory": "oxlint bin scripts",
"format:check": "oxfmt --check bin scripts package.json tsconfig.json .github/workflows",
"test": "bun test",
"typecheck": "tsc --noEmit",
"verify:first-user-proof": "bun run scripts/verify-first-user-proof.ts",
"verify:milestone3-proof-lane": "bun run scripts/verify-milestone3-proof-lane.ts",
"verify:proof-lane-docs": "bun run scripts/verify-proof-lane-docs.ts",
"verify:self-audit-proof": "bun run scripts/verify-self-audit-proof.ts",
"typecheck:strict:share-bundle": "tsc -p tsconfig.strict-share-bundle.json --noEmit",
"prepare": "lefthook install"
},
"devDependencies": {
"bun-types": "^1.3.12",
"lefthook": "^2.1.6",
"oxfmt": "^0.61.0",
"oxlint": "^1.60.0",
"typescript": "^7.0.2"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20"
},
"packageManager": "bun@1.3.13"
}