-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.56 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
{
"name": "kahuna",
"version": "1.5.2",
"description": "Browser-extension to view, edit, manage, export and import IndexedDB databases.",
"author": "Lutz Brückner <[email protected]>",
"license": "MPL-2.0",
"private": true,
"type": "module",
"repository": "github:hummingme/kahuna",
"homepage": "https://github.com/hummingme/kahuna/README.md",
"bugs": "https://github.com/hummingme/kahuna/issues",
"keywords": [
"indexeddb",
"databases",
"webextension",
"browser-extension",
"browser-addon",
"firefox",
"chrome"
],
"scripts": {
"build": "scripts/build.sh",
"release": "scripts/release.sh",
"dev:firefox": "scripts/develop.sh firefox",
"dev:chromium": "scripts/develop.sh chromium",
"lint": "eslint 'src/**/*.ts'",
"check": "npx tsc --noEmit"
},
"dependencies": {
"@open-wc/lit-helpers": "^0.7",
"@tabler/icons": "^3.34",
"dexie": "^4.0",
"dexie-export-import": "^4.1.4",
"lit": "^3.3",
"lit-html": "^3.3"
},
"devDependencies": {
"@eslint/js": "^9.31",
"@types/chrome": "^0.1",
"@types/firefox-webext-browser": "^143",
"esbuild": "^0.27",
"eslint": "^9.31",
"eslint-config-prettier": "^10.1",
"globals": "^17",
"http-server": "github:http-party/http-server",
"onchange": "^7.1",
"prettier": "3.4.2",
"typescript": "^5.8",
"typescript-eslint": "^8.37",
"web-ext": "^9"
}
}