cfw-bindings-wrangler-bridge
Version:
This bridge makes it possible to interact with **remote** Cloudflare Workers bindings(like KV, D1, etc...) **from anywhere** you want.
38 lines (37 loc) • 819 B
JSON
{
"name": "cfw-bindings-wrangler-bridge",
"version": "0.11.0",
"type": "module",
"main": "./module/index.js",
"types": "./module/index.d.ts",
"scripts": {
"format": "npx prettier@latest -w .",
"lint": "npm run lint:module && npm run lint:worker",
"lint:module": "tsc -p ./module/jsconfig.json",
"lint:worker": "tsc -p ./worker/jsconfig.json",
"test": "echo 'See ./__tests__ directory.'"
},
"keywords": [
"cloudflare",
"workers",
"kv",
"d1",
"r2",
"wrangler",
"bindings"
],
"author": "Yuji Sugiura",
"license": "MIT",
"files": [
"worker",
"module"
],
"devDependencies": {
"@cloudflare/workers-types": "^4.20240502.0",
"@types/node": "^20.12.10",
"typescript": "^5.4.5"
},
"dependencies": {
"devalue": "^5.0.0"
}
}