-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.97 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
{
"name": "@coder/ai-sdk-sandbox",
"version": "0.3.0",
"description": "Coder workspace sandbox provider for the Vercel AI SDK v7 HarnessAgent",
"keywords": [
"ai-sdk",
"claude-code",
"coder",
"codex",
"harness",
"sandbox"
],
"homepage": "https://github.com/coder/ai-sdk/tree/main/packages/sandbox#readme",
"bugs": {
"url": "https://github.com/coder/ai-sdk/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/coder/ai-sdk.git",
"directory": "packages/sandbox"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"attw": "attw --pack --ignore-rules cjs-resolves-to-esm",
"verify:real": "tsx scripts/verify-real.ts",
"verify:create": "tsx scripts/verify-create.ts",
"prepublishOnly": "pnpm run build && pnpm run typecheck && pnpm test && publint && pnpm run attw"
},
"devDependencies": {
"@ai-sdk/harness": "^1.0.23",
"@ai-sdk/harness-claude-code": "^1.0.23",
"@ai-sdk/provider-utils": "^5.0.7",
"@ai-sdk/tui": "^1.0.19",
"@arethetypeswrong/cli": "^0.18.0",
"@types/node": "^22",
"@vitest/coverage-v8": "^4.1.9",
"publint": "^0.3.0",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"zod": "4.4.3"
},
"peerDependencies": {
"@ai-sdk/harness": "^1.0.0",
"@ai-sdk/provider-utils": "^5.0.0"
},
"engines": {
"node": ">=22"
}
}