-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.55 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
{
"name": "@itsthelore/proofkeeper",
"version": "2026.07.1",
"description": "Lore Proofkeeper — an autonomous QA agent that drives a product, compiles the session into durable Playwright tests, gates them on fidelity, and reports which Lore capabilities are unverified.",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"proofkeeper": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"NOTICE",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"proofkeeper": "node --import tsx ./src/cli.ts",
"lint": "biome lint src tests"
},
"keywords": [
"lore",
"proofkeeper",
"playwright",
"verification",
"qa",
"requirements-as-code"
],
"repository": {
"type": "git",
"url": "https://github.com/asdecided/proofkeeper.git"
},
"homepage": "https://asdecided.com/docs/ecosystem/",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.105.0",
"@biomejs/biome": "2.5.2",
"@types/node": "^20.14.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"dependencies": {
"@playwright/test": "^1.45.0"
},
"peerDependencies": {
"@anthropic-ai/sdk": ">=0.40.0"
},
"peerDependenciesMeta": {
"@anthropic-ai/sdk": {
"optional": true
}
}
}