-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 999 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 999 Bytes
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
{
"name": "kasgraph",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "KasGraph monorepo. Subgraph-style indexing for Kaspa with GraphQL + MCP + KasStream.",
"packageManager": "npm@10.9.2",
"workspaces": [
"apps/site",
"sdk",
"cli",
"api",
"mcp",
"as-mapping"
],
"scripts": {
"build": "tsc -b sdk cli api mcp",
"build:rust": "cargo build --workspace",
"clean": "rm -rf sdk/dist cli/dist api/dist mcp/dist target",
"site:dev": "npm --workspace @kasgraph/site run dev",
"site:build": "npm --workspace @kasgraph/site run build",
"site:start": "npm --workspace @kasgraph/site run start",
"test": "vitest run",
"test:watch": "vitest",
"test:rust": "cargo test --workspace",
"typecheck": "tsc -b sdk cli api mcp",
"verify": "npm run typecheck && npm run test && npm run test:rust"
},
"devDependencies": {
"@types/node": "^24.10.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}