-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.97 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
{
"name": "intuition-core",
"private": true,
"description": "Intuition Core — the open backend, in a box. Self-hosted indexer, atom intelligence, and a query API for the Intuition knowledge graph.",
"license": "MIT",
"packageManager": "bun@1.3.11",
"workspaces": [
"apps/*",
"packages/*",
"services/*",
"tooling/*"
],
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter './packages/*'",
"bootstrap": "scripts/bootstrap.sh",
"explore": "scripts/explore-data.sh",
"smoke": "scripts/smoke-test.sh",
"smoke:index": "scripts/smoke-index.sh",
"scope:dry-run": "bun run scripts/scope-dry-run.ts",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"dev": "turbo run dev",
"dev:local": "scripts/dev-local.sh",
"dev:local:dry-run": "scripts/dev-local.sh --dry-run",
"dev:packages": "turbo watch dev --filter './packages/*'",
"lint": "turbo run lint",
"format": "turbo run format",
"check": "turbo run check",
"check:write": "turbo run check:write --concurrency=3",
"clean": "turbo run clean && git clean -xdf node_modules",
"datastores:up": "docker compose -f docker-compose.datastores.yml up -d",
"datastores:down": "docker compose -f docker-compose.datastores.yml down",
"datastores:reset": "docker compose -f docker-compose.datastores.yml down -v",
"guard:supply-chain": "node scripts/guard-supply-chain-policy.mjs",
"preinstall": "node scripts/enforce-bun-install.mjs",
"devnet:deploy": "bun run --cwd packages/contracts devnet:deploy",
"abis:sync": "bun run scripts/sync-abis.ts",
"abis:check": "bun run scripts/sync-abis.ts --check",
"testnet:deploy": "bun run --cwd packages/contracts testnet:deploy"
},
"catalog": {
"typescript": "^5.9.3",
"zod": "4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/bun": "^1.3.3",
"turbo": "^2.6.2",
"typescript": "^5.9.3",
"ultracite": "^7.0.11",
"@0xintuition/contracts": "workspace:*"
},
"engines": {
"node": ">=20"
}
}