-
Notifications
You must be signed in to change notification settings - Fork 541
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 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
{
"name": "@cloudflare/worker-bundler",
"description": "Build and bundle Workers at runtime for Cloudflare Worker Loader binding",
"version": "0.1.3",
"type": "module",
"license": "MIT",
"repository": {
"directory": "packages/worker-bundler",
"type": "git",
"url": "git+https://github.com/cloudflare/agents.git"
},
"author": "Cloudflare Inc.",
"bugs": {
"url": "https://github.com/cloudflare/agents/issues"
},
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./typescript": {
"types": "./dist/typescript.d.ts",
"import": "./dist/typescript.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsx ./scripts/build.ts",
"test": "vitest run --config src/tests/vitest.config.ts"
},
"dependencies": {
"@typescript/vfs": "^1.6.4",
"es-module-lexer": "^2.1.0",
"esbuild-wasm": "0.28.0",
"resolve.exports": "^2.0.3",
"semver": "^7.7.4",
"smol-toml": "^1.6.1",
"sucrase": "^3.35.1",
"typescript": "^6.0.3"
},
"devDependencies": {
"@types/semver": "^7.7.1"
},
"engines": {
"node": ">=22"
}
}