-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "sdrlog",
"private": true,
"version": "1.0.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"volta": {
"node": "22.11.0"
},
"scripts": {
"prepare": "husky",
"start": "vite",
"typecheck": "tsc --noEmit",
"lint:js": "eslint --fix",
"lint": "npm run typecheck && npm run lint:js",
"format": "dprint fmt",
"build": "vite build",
"prepreview": "npm run build",
"preview": "vite preview --port 3000"
},
"dependencies": {
"epubjs": "^0.3.93",
"idb": "^8.0.0",
"jszip": "^3.10.1",
"lit": "^3.2.1",
"marked": "^15.0.3",
"nipplejs": "^0.10.2",
"open-props": "1.7.8",
"pdfjs-dist": "^4.10.38",
"urlpattern-polyfill": "^10.0.0"
},
"devDependencies": {
"@types/emscripten": "^1.40.0",
"@types/node": "22.13.0",
"@types/wicg-file-system-access": "^2023.10.5",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"typed-query-selector": "^2.12.0",
"typescript": "^5.7.2",
"vite": "^6.0.11",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-typescript-transpile": "0.5.4",
"workbox-window": "^7.3.0"
},
"overrides": {
"has": "npm:@nolyfill/has@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1"
}
}