-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.26 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
{
"name": "veracityapi",
"version": "0.1.0",
"description": "Content trust API for agents",
"type": "module",
"workspaces": [
"packages/deterministic-core",
"packages/mcp",
"packages/sdk"
],
"scripts": {
"build:deterministic-core": "npm run build -w @veracityapi/deterministic-core",
"test:deterministic-core": "npm test -w @veracityapi/deterministic-core",
"build:style-editor": "node scripts/build-style-editor-browser.mjs",
"pretest": "npm run build:deterministic-core && npm run build:style-editor",
"predeploy": "npm run build:deterministic-core && npm run build:style-editor",
"test": "vitest run",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"latency:snapshot": "node scripts/generate-latency-snapshot.mjs",
"types": "wrangler types",
"evals:summary": "node scripts/evals-summary.mjs"
},
"dependencies": {
"ulid": "^3.0.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260510.0",
"esbuild": "^0.28.0",
"typescript": "^5.9.3",
"vitest": "^4.0.8",
"wrangler": "^4.67.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/psyduckler/veracityapi.git"
},
"homepage": "https://veracityapi.com"
}