@enclave-run/sdk 0.0.0 → 0.1.0
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/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +27 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enclave-run/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Enclave SDK — cloud sandboxes for AI agents",
|
|
5
5
|
"homepage": "https://enclave.run",
|
|
6
6
|
"license": "MIT",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"dev": "tsup --watch",
|
|
91
91
|
"example": "tsx example.mts",
|
|
92
92
|
"test": "vitest run",
|
|
93
|
-
"test:package": "node tests/package-smoke.mjs && node tests/package-smoke.cjs",
|
|
93
|
+
"test:package": "node tests/package-no-dynamic-specifiers.mjs && node tests/package-smoke.mjs && node tests/package-smoke.cjs",
|
|
94
94
|
"generate": "npm-run-all generate:* && pnpm run format",
|
|
95
95
|
"generate:api": "uv run --with pyyaml python ./../../spec/remove_extra_tags.py sandboxes templates tags auth secrets && openapi-typescript ../../spec/openapi_generated.yml -x api_key --array-length --alphabetize --default-non-nullable false --output src/api/schema.gen.ts",
|
|
96
96
|
"generate:envd": "cd ../../spec/envd && buf generate --template buf-js.gen.yaml\n",
|