- Add EXECUTOR_SPECIFICATION.md with formal v1.0 protocol spec - Add executor-openapi.yaml (OpenAPI 3.0 specification) - Create @tpmjs/executor-test compliance test package (15 tests) - Update Railway executor to v1.0 compliance (15/15 tests pass) - Update Unsandbox executor to v1.0 compliance (15/15 tests pass) - Update Vercel executor to v1.0 compliance - Add /info endpoint with capability advertisement to all executors - Add structured error codes (PACKAGE_NOT_FOUND, TOOL_NOT_FOUND, etc.) - Add protocolVersion and implementationVersion to /health responses - Add X-TPMJS-Protocol-Version header support - Add EXECUTOR_COMPLIANCE.md with test results documentation
20 lines
393 B
JSON
20 lines
393 B
JSON
{
|
|
"name": "tpmjs-executor",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "TPMJS Tool Executor for Railway - Deploy your own executor on Railway",
|
|
"main": "index.cjs",
|
|
"scripts": {
|
|
"start": "node index.cjs",
|
|
"dev": "node index.cjs"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {},
|
|
"keywords": [
|
|
"tpmjs",
|
|
"executor",
|
|
"railway"
|
|
]
|
|
}
|