-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.53 KB
/
package.json
File metadata and controls
47 lines (47 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
{
"name": "denokv-gui-client",
"description": "An open source GUI client to browse the data inside a Deno KV database and perform CRUD operations",
"version": "1.18.0",
"private": true,
"type": "module",
"homepage": "https://github.com/AbdulrhmanGoni/denokv-gui-client",
"license": "MIT",
"author": {
"email": "abdulrhmangoni@gmail.com",
"name": "Abdulrhman Goni",
"url": "https://github.com/AbdulrhmanGoni"
},
"main": "packages/entry-point.mjs",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=23.0.0"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"compile": "npm run build && electron-builder build --config electron-builder.mjs",
"test": "npx playwright test ./tests/e2e.spec.ts",
"start": "node packages/dev-mode.js",
"release": "commit-and-tag-version",
"release-bridge-server": "cd ./packages/bridge-server && commit-and-tag-version --path ./",
"typecheck": "npm run typecheck --workspaces --if-present",
"migration": "dbmate -u sqlite:database.dev.sqlite -d packages/main/src/db/migrations --no-dump-schema",
"screenshots": "node scripts/takeScreenshots.ts"
},
"devDependencies": {
"@npmcli/map-workspaces": "4.0.2",
"@playwright/test": "^1.55.0",
"@types/node": "24.0.3",
"commit-and-tag-version": "^12.5.2",
"electron": "40.0.0",
"electron-builder": "26.7.0",
"glob": "11.1.0",
"playwright": "^1.55.0",
"sharp": "^0.34.5"
},
"dependencies": {
"dbmate": "^2.28.0",
"@app/main": "*"
}
}