-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "@dwk/cf-shims",
"version": "1.0.0-beta.2",
"description": "Node-backed implementations of the Cloudflare Workers binding interfaces (D1, R2, KV, Queue, cron, Durable Objects) and runtime-global seams (cloudflare:workers, HTMLRewriter, crypto.DigestStream, hibernatable WebSockets), for any Node host.",
"keywords": [
"cloudflare-workers",
"node-sqlite",
"durable-objects",
"self-hosting",
"shim"
],
"type": "module",
"license": "ISC",
"author": "David W. Keith <me@dwk.io>",
"homepage": "https://github.com/davidwkeith/workers/tree/main/packages/cf-shims#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/davidwkeith/workers.git",
"directory": "packages/cf-shims"
},
"bugs": {
"url": "https://github.com/davidwkeith/workers/issues"
},
"engines": {
"node": ">=22"
},
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cloudflare-workers": {
"types": "./dist/cloudflare-workers.d.ts",
"import": "./dist/cloudflare-workers.js"
}
},
"files": [
"dist",
"src",
"!src/**/*.test.ts"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json",
"clean": "rm -rf dist"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@worker-tools/html-rewriter": "0.1.0-pre.19"
},
"devDependencies": {
"@types/node": "26.2.0"
}
}