-
-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) 路 1.79 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) 路 1.79 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": "@tanstack/ai-isolate-cloudflare",
"version": "0.2.27",
"description": "Cloudflare Workers sandbox driver for TanStack AI Code Mode TypeScript execution at the edge.",
"author": "Tanner Linsley",
"license": "MIT",
"homepage": "https://tanstack.com/ai",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/ai.git",
"directory": "packages/ai-isolate-cloudflare"
},
"bugs": {
"url": "https://github.com/TanStack/ai/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"type": "module",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
},
"./worker": {
"types": "./dist/esm/worker/index.d.ts",
"import": "./dist/esm/worker/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src",
"worker",
"wrangler.toml"
],
"scripts": {
"build": "vite build",
"clean": "premove ./build ./dist",
"dev:worker": "wrangler dev",
"deploy:worker": "wrangler deploy",
"lint:fix": "eslint ./src --fix",
"test:build": "publint --strict",
"test:eslint": "eslint ./src",
"test:lib": "vitest --passWithNoTests",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc"
},
"keywords": [
"ai",
"ai-sdk",
"typescript",
"tanstack",
"code-mode",
"cloudflare",
"workers",
"edge",
"isolate",
"sandbox",
"code-execution"
],
"dependencies": {
"@tanstack/ai-code-mode": "workspace:*"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@vitest/coverage-v8": "4.0.14",
"wrangler": "^4.88.0"
}
}