forked from cloudflare/db-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 KB
/
package.json
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
{
"name": "@icewolf/cloudflare-db-connect",
"version": "0.0.0-development",
"description": "Connect your SQL database to Cloudflare Workers.",
"repository": "https://github.com/icewolf/cloudflare-db-connect.git",
"homepage": "https://github.com/icewolf/cloudflare-db-connect#readme",
"author": "David Roizenman <[email protected]>",
"license": "MIT",
"main": "dist/db-connect.cjs.js",
"module": "dist/db-connect.esm.js",
"browser": "dist/db-connect.umd.js",
"types": "dist/index.d.ts",
"bin": {
"@cloudflare/db-connect-quickstart": "bin/quickstart",
"db-connect-quickstart": "bin/quickstart"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"email-validator": "^2.0.4",
"enquirer": "^2.3.6",
"node-fetch": "^2.6.1",
"rollup": "^2.41.2",
"tslib": "^2.1.0",
"typescript": "^4.2.3",
"semantic-release": "^17.4.2"
},
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"semantic-release": "semantic-release"
},
"files": [
"dist/",
"bin/",
"example/"
],
"keywords": [
"sql",
"postgres",
"mysql",
"database",
"workers",
"cloudflare"
]
}