-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.21 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
{
"name": "brave-domain-manager",
"version": "0.1.2",
"private": true,
"description": "Manage Brave browser's domain blocklist in the Windows registry.",
"main": "./out/main/index.js",
"author": "cbgithub7",
"license": "MIT",
"scripts": {
"helper:prepare": "node scripts/prepare-registry-helper.mjs",
"predev": "npm run helper:prepare",
"dev": "electron-vite dev",
"prebuild": "npm run helper:prepare",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"test": "vitest run",
"test:watch": "vitest",
"pretest:e2e": "npm run build",
"test:e2e": "playwright test",
"lint": "eslint . --ext .ts,.tsx",
"build:win": "electron-vite build && electron-builder --win",
"release:win": "electron-vite build && electron-builder --win --publish always"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"electron-updater": "^6.8.9",
"fuse.js": "^7.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"regedit-rs": "^1.0.4",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@playwright/test": "^1.62.0",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.3",
"app-builder-bin": "^5.0.0-alpha.10",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^25.0.1",
"playwright-core": "^1.62.0",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vitest": "^2.1.5"
},
"allowScripts": {
"electron@33.4.11": true,
"esbuild@0.21.5": true
}
}