-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "refract",
"version": "0.5.0",
"type": "module",
"private": true,
"description": "A deterministic observation engine for public revision histories. Evidence, not truth.",
"repository": {
"type": "git",
"url": "git+https://github.com/refract-org/refract.git"
},
"homepage": "https://github.com/refract-org/refract#readme",
"bugs": "https://github.com/refract-org/refract/issues",
"keywords": [
"observation-engine",
"knowledge-change",
"public-knowledge",
"edit-history",
"wikipedia",
"evidence-graph",
"agent-tool",
"provenance",
"semantic-events"
],
"engines": {
"bun": ">=1.2.0",
"node": ">=20.0.0"
},
"license": "AGPL-3.0",
"workspaces": [
"packages/evidence-graph",
"packages/ingestion",
"packages/analyzers",
"packages/cli",
"packages/persistence",
"packages/eval"
],
"scripts": {
"build": "tsc -b",
"lint": "biome lint packages/",
"format": "biome format --write packages/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"ci": "bun run build && biome ci packages/ && bun run typecheck && bun run check:boundaries && bun run test",
"check:boundaries": "bun scripts/check-boundaries.ts",
"clean": "rm -rf packages/*/dist",
"postinstall": "mkdir -p node_modules/@refract-org && for pkg in packages/*/; do name=$(basename $pkg); ln -sfn ../../packages/$name node_modules/@refract-org/$name 2>/dev/null; done",
"prepare": "husky",
"setup": "mise trust && bun install",
"assets:check": "bun run scripts/check-assets.ts",
"assets:generate": "bun run scripts/generate-scenes.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/node": "^22.19.19",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}