@studio-foundation/contracts 0.3.0-beta.1 → 0.3.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent.d.ts +28 -0
- package/dist/agent.d.ts.map +1 -0
- package/dist/agent.js +3 -0
- package/dist/agent.js.map +1 -0
- package/dist/context-pack.d.ts +21 -0
- package/dist/context-pack.d.ts.map +1 -0
- package/dist/context-pack.js +3 -0
- package/dist/context-pack.js.map +1 -0
- package/dist/errors.d.ts +16 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +23 -0
- package/dist/errors.js.map +1 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.d.ts.map +1 -0
- package/{src/index.ts → dist/index.js} +1 -3
- package/dist/index.js.map +1 -0
- package/dist/integration-plugin.d.ts +35 -0
- package/dist/integration-plugin.d.ts.map +1 -0
- package/dist/integration-plugin.js +3 -0
- package/dist/integration-plugin.js.map +1 -0
- package/dist/pipeline.d.ts +79 -0
- package/dist/pipeline.d.ts.map +1 -0
- package/dist/pipeline.js +5 -0
- package/dist/pipeline.js.map +1 -0
- package/dist/provider.d.ts +35 -0
- package/dist/provider.d.ts.map +1 -0
- package/dist/provider.js +3 -0
- package/dist/provider.js.map +1 -0
- package/dist/run.d.ts +43 -0
- package/dist/run.d.ts.map +1 -0
- package/dist/run.js +3 -0
- package/dist/run.js.map +1 -0
- package/dist/runner-events.d.ts +67 -0
- package/dist/runner-events.d.ts.map +1 -0
- package/dist/runner-events.js +7 -0
- package/dist/runner-events.js.map +1 -0
- package/dist/spawner.d.ts +15 -0
- package/dist/spawner.d.ts.map +1 -0
- package/dist/spawner.js +4 -0
- package/dist/spawner.js.map +1 -0
- package/{src/stage.ts → dist/stage.d.ts} +6 -9
- package/dist/stage.d.ts.map +1 -0
- package/dist/stage.js +3 -0
- package/dist/stage.js.map +1 -0
- package/{src/task.ts → dist/task.d.ts} +1 -2
- package/dist/task.d.ts.map +1 -0
- package/dist/task.js +3 -0
- package/dist/task.js.map +1 -0
- package/dist/tool-plugin.d.ts +42 -0
- package/dist/tool-plugin.d.ts.map +1 -0
- package/dist/tool-plugin.js +3 -0
- package/dist/tool-plugin.js.map +1 -0
- package/dist/validation.d.ts +38 -0
- package/dist/validation.d.ts.map +1 -0
- package/dist/validation.js +3 -0
- package/dist/validation.js.map +1 -0
- package/package.json +4 -1
- package/.claude/settings.json +0 -5
- package/ARCHITECTURE.md +0 -33
- package/src/agent.ts +0 -33
- package/src/context-pack.ts +0 -15
- package/src/errors.ts +0 -23
- package/src/integration-plugin.ts +0 -34
- package/src/pipeline.ts +0 -97
- package/src/provider.ts +0 -39
- package/src/run.ts +0 -49
- package/src/runner-events.ts +0 -69
- package/src/spawner.ts +0 -19
- package/src/tool-plugin.ts +0 -47
- package/src/validation.ts +0 -42
- package/tests/types.test.ts +0 -101
- package/tsconfig.json +0 -24
- package/tsconfig.test.json +0 -8
package/tsconfig.json
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2022",
|
|
4
|
-
"module": "ES2022",
|
|
5
|
-
"moduleResolution": "bundler",
|
|
6
|
-
"outDir": "./dist",
|
|
7
|
-
"rootDir": "./src",
|
|
8
|
-
"declaration": true,
|
|
9
|
-
"declarationMap": true,
|
|
10
|
-
"sourceMap": true,
|
|
11
|
-
"strict": true,
|
|
12
|
-
"esModuleInterop": true,
|
|
13
|
-
"skipLibCheck": true,
|
|
14
|
-
"forceConsistentCasingInFileNames": true,
|
|
15
|
-
"resolveJsonModule": true,
|
|
16
|
-
"isolatedModules": true,
|
|
17
|
-
"noUnusedLocals": true,
|
|
18
|
-
"noUnusedParameters": true,
|
|
19
|
-
"noImplicitReturns": true,
|
|
20
|
-
"noFallthroughCasesInSwitch": true
|
|
21
|
-
},
|
|
22
|
-
"include": ["src/**/*"],
|
|
23
|
-
"exclude": ["node_modules", "dist", "tests"]
|
|
24
|
-
}
|