@arker-ai/sdk 0.2.1 → 0.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arker-ai/sdk",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "TypeScript SDK for the Arker virtual computer platform — spawn sandboxed VMs, run code, sync files.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -19,7 +19,12 @@
19
19
  },
20
20
  "scripts": {
21
21
  "build": "tsup src/index.ts --format esm,cjs --dts --clean --target=node18",
22
+ "check:api-types": "openapi-typescript ../contract/openapi.json --default-non-nullable false -o src/generated/api-types.ts --check",
22
23
  "demo": "tsx tests/demo.ts",
24
+ "generate:api-types": "openapi-typescript ../contract/openapi.json --default-non-nullable false -o src/generated/api-types.ts",
25
+ "smoke": "tsx tests/conformance/fork-run-sync.ts",
26
+ "test": "tsx tests/unit.ts",
27
+ "typecheck": "tsc -p tsconfig.test.json",
23
28
  "prepublishOnly": "npm run build"
24
29
  },
25
30
  "keywords": ["arker", "vm", "sandbox", "agent", "code-execution"],
@@ -33,6 +38,7 @@
33
38
  "bugs": "https://github.com/ArkerHQ/arker-sdk/issues",
34
39
  "devDependencies": {
35
40
  "@types/node": "^25.6.0",
41
+ "openapi-typescript": "^7.13.0",
36
42
  "tsup": "^8.3.0",
37
43
  "tsx": "^4.19.0",
38
44
  "typescript": "^5.6.0"