-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.65 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
{
"name": "@sonicfield/masa-workspace",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "Local-first reference repository for the MASA Sound Matter Aware protocol",
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22.20"
},
"scripts": {
"generate": "tsx scripts/generate-examples.ts && tsx scripts/generate-capabilities.ts && tsx scripts/generate-artifacts.ts",
"build": "pnpm generate && tsc -b",
"typecheck": "pnpm generate && tsc -b --pretty false",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"schemas:check": "tsx scripts/check-schemas.ts",
"examples:validate": "tsx scripts/validate-examples.ts",
"conformance": "tsx conformance/run.ts",
"conformance:evidence": "tsx conformance/run.ts --write-evidence",
"artifacts:inspect": "tsx scripts/inspect-package-artifacts.ts",
"artifacts:smoke": "tsx scripts/smoke-package-artifacts.ts",
"check": "pnpm build && pnpm schemas:check && pnpm test && pnpm examples:validate && pnpm conformance && pnpm -r exec publint && pnpm artifacts:inspect && pnpm artifacts:smoke",
"masa": "tsx cli/src/index.ts",
"mcp": "node mcp/dist/server.js"
},
"devDependencies": {
"@types/node": "24.3.0",
"@vitest/coverage-v8": "4.1.10",
"@modelcontextprotocol/sdk": "1.30.0",
"@sonicfield/masa": "workspace:*",
"@sonicfield/masa-bundle": "workspace:*",
"@sonicfield/masa-validator": "workspace:*",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"json-schema-to-typescript": "15.0.4",
"publint": "0.3.22",
"tsx": "4.23.1",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}