-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 912 Bytes
/
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
49
{
"name": "d1-console",
"version": "1.4.8",
"license": "GPL-3.0-or-later",
"description": "A full query console for Cloudflare's D1 database product.",
"author": {
"name": "Isaac McFadyen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/isaac-mcfadyen/d1-console.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/*"
],
"keywords": [
"cloudflare",
"d1",
"database",
"sqlite",
"edge",
"client"
],
"bin": {
"d1-console": "./bin/cli.js"
},
"main": "./bin/cli.js",
"type": "module",
"scripts": {
"bundle": "node build.js && chmod +x ./bin/cli.js",
"prepublish": "npm run bundle"
},
"devDependencies": {
"@types/node": "18.0.1",
"commander": "^9.4.1",
"esbuild": "0.14.48",
"node-fetch": "3.2.6",
"ora": "^6.1.2",
"table": "^6.8.0",
"typescript": "4.7.4"
},
"engines": {
"node": ">=16.7.0"
}
}