-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.87 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@openadam/equatorium",
"version": "0.1.0",
"private": true,
"description": "Equatorium: a deterministic semantic interpreter for standardized micro-languages used by agents.",
"author": {
"name": "openAdam",
"url": "https://github.com/tetracoralla"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tetracoralla/equatorium.git"
},
"bugs": {
"url": "https://github.com/tetracoralla/equatorium/issues"
},
"homepage": "https://github.com/tetracoralla/equatorium#readme",
"type": "module",
"bin": {
"equatorium": "./dist/cli.js",
"equatorium-mcp": "./dist/mcp-bin.js",
"equatorium-ui": "./dist/ui-bin.js",
"sei": "./dist/cli.js",
"sei-mcp": "./dist/mcp-bin.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"docs",
"schemas",
"ui",
"LICENSE",
"NOTICE",
"THIRD_PARTY_NOTICES.md",
"README.md"
],
"scripts": {
"prebuild": "node scripts/clean-dist.mjs",
"build": "tsc -p tsconfig.build.json",
"postbuild": "node scripts/build-plugin.mjs",
"check": "npm run typecheck && npm run test && npm run check:schemas && npm run check:safety && npm run check:release && npm run build && npm run check:capabilities && npm run check:agent && npm run check:package",
"check:agent": "node scripts/check-agent-surface.mjs",
"check:capabilities": "node --import tsx scripts/exportCapabilityProvider.mjs --check && node scripts/runTransportSchemaProbe.mjs --check",
"check:package": "node scripts/check-package-install.mjs",
"check:release": "node scripts/check-release-hygiene.mjs",
"check:safety": "node scripts/check-safety.mjs",
"check:schemas": "node --import tsx scripts/check-schemas.ts",
"generate:schemas": "node --import tsx scripts/generate-schemas.ts",
"start": "node --import tsx src/cli.ts",
"start:mcp": "node --import tsx src/mcp-bin.ts",
"start:ui": "node --import tsx src/ui-bin.ts",
"test:agent": "vitest run --no-file-parallelism test/mcp.test.ts test/mcp-stdio-boundary.test.ts test/mcp-transport-conformance.test.ts",
"test": "vitest run --no-file-parallelism",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@modelcontextprotocol/server": "^2.0.0",
"ajv": "8.20.0",
"content-type": "2.0.0",
"cron-parser": "5.8.1",
"ipaddr.js": "2.5.0",
"iso8601-duration": "2.1.4",
"rrule": "2.8.1",
"semver": "7.8.5",
"uri-js": "4.4.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@modelcontextprotocol/client": "^2.0.0",
"@types/node": "26.2.0",
"@types/semver": "7.8.0",
"esbuild": "^0.28.2",
"happy-dom": "^20.11.2",
"tsx": "4.23.12",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}