-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.88 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
{
"name": "diffbro",
"version": "0.1.0",
"description": "Desktop file diff viewer with GitHub-style rendering",
"main": "./build/main/index.js",
"author": "Mindaugas",
"license": "MIT",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "electron-vite build && playwright test",
"lint": "eslint .",
"check:styles": "node scripts/check-style-tokens.mjs",
"format": "prettier --write \"src/**/*.{js,vue,css}\" \"tests/**/*.js\" \"*.mjs\"",
"check": "npm run lint && npm run check:styles && npm run test:coverage",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --publish never",
"build:mac": "npm run build && electron-builder --mac --publish never",
"build:linux": "npm run build && electron-builder --linux --publish never",
"docker:up": "docker compose up --build",
"docker:down": "docker compose down",
"render:dmg-bg": "electron scripts/render-dmg-background.mjs"
},
"dependencies": {
"chardet": "^2.0.0",
"iconv-lite": "^0.6.3",
"mermaid": "^11.16.0",
"pinia": "^2.2.6",
"vue": "^3.5.13"
},
"devDependencies": {
"@emnapi/core": "^1.11.2",
"@emnapi/runtime": "^1.11.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^4.1.10",
"electron": "^39.8.10",
"electron-builder": "^26.15.3",
"electron-vite": "^5.0.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-sonarjs": "^4.2.0",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"monaco-editor": "^0.52.0",
"prettier": "^3.9.5",
"vitest": "^4.1.10"
}
}