This repository was archived by the owner on Mar 26, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.47 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"name": "anime-library",
"author": "Alex Kozack (https://kozack.me)",
"description": "Приложение для просмотра аниме (в работе).",
"homepage": "https://github.com/cawa-93/anime-library#readme",
"engines": {
"node": ">=v16.7",
"npm": ">=7.20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cawa-93/anime-library.git"
},
"bugs": {
"url": "https://github.com/cawa-93/anime-library/issues"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "concurrently \"npm:build-assets:*\"",
"build-assets:main": "cd ./packages/main && vite build",
"build-assets:preload": "cd ./packages/preload && vite build",
"build-assets:renderer": "cd ./packages/renderer && vite build",
"build:types": "dts-cb -i packages/preload/tsconfig.json -o packages/preload/exposed.d.ts",
"compile": "npm run build && electron-builder build --config .electron-builder.config.js --dir --config.asar=false",
"test": "npm run test:renderer && npm run test:e2e",
"test:renderer": "cd ./packages/renderer && vitest run",
"test:e2e": "npm run build && vitest run",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue",
"typecheck": "concurrently --raw \"npm:typecheck:*\"",
"typecheck:main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck:preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck:renderer": "vue-tsc --noEmit -p packages/renderer/tsconfig.json"
},
"devDependencies": {
"@types/wicg-mediasession": "1.1.3",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@vitejs/plugin-vue": "2.3.4",
"autoprefixer": "10.4.8",
"concurrently": "7.3.0",
"cross-env": "7.0.3",
"electron": "17.4.11",
"electron-builder": "22.14.13",
"electron-devtools-installer": "3.2.0",
"eslint": "8.9.0",
"eslint-plugin-vue": "8.5.0",
"fake-indexeddb": "3.1.8",
"nano-staged": "0.8.0",
"playwright": "1.24.2",
"rollup-plugin-copy": "3.4.0",
"simple-git-hooks": "2.8.0",
"typescript": "4.5.5",
"vite": "2.9.14",
"vite-plugin-pwa": "0.12.3",
"vite-plugin-windicss": "1.8.7",
"vitest": "0.20.3",
"vue-tsc": "0.39.4",
"windicss": "3.5.6"
},
"dependencies": {
"@headlessui/vue": "1.6.7",
"@vueuse/core": "7.7.1",
"electron-updater": "4.6.5",
"electron-window-state": "5.0.3",
"idb": "7.0.2",
"vue": "3.2.37",
"vue-router": "4.1.3"
}
}