-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.78 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.78 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"private": true,
"name": "Lode",
"version": "0.36.0",
"author": "Tomas Buteler <info@lode.run>",
"description": "A universal GUI for unit testing",
"license": "MIT",
"main": "./dist/main.js",
"homepage": "https://lode.run",
"repository": "github:lodeapp/lode",
"issues": {
"url": "https://github.com/lodeapp/lode/issues",
"email": "info@lode.run"
},
"scripts": {
"icons": "node workflow/icons.js",
"licenses": "node workflow/licenses.js",
"decipher": "node workflow/decipher.js",
"pack:lode": "electron-vite build && node workflow/copy-static.js",
"pack:jest": "node workflow/reporters/build-jest.js",
"pack:phpunit": "node workflow/reporters/phpunit.js",
"pack:reporters": "npm run pack:jest && npm run pack:phpunit",
"dev": "npm run icons && npm run pack:reporters && cross-env IS_DEV=true electron-vite dev -- --trace-warnings --inspect=5858 --remote-debugging-port=9223",
"devtools": "vue-devtools",
"clean": "node workflow/clean.js",
"clean:all": "npm run clean:build && npm run clean",
"clean:build": "node workflow/clean-build.js",
"build:before": "npm run clean:all && npm run icons && npm run pack:reporters && npm run licenses",
"build:after": "npm run clean",
"build": "npm run build:before && npm run pack:lode && cross-env electron-builder --publish never && npm run build:after",
"release:before": "node workflow/release-before.js && npm run build:before",
"release:after": "node workflow/release-after.js && npm run build:after",
"release": "npm run release:before && npm run pack:lode && cross-env electron-builder --publish always && npm run release:after",
"test": "vitest run",
"coverage": "vitest run --coverage",
"tsc": "tsc --noEmit",
"test:e2e": "npm run icons && npx playwright test --config tests/playwright/playwright.config.ts",
"test:playwright": "npm run icons && npx playwright test --config tests/playwright/playwright.config.ts --ui",
"lint": "eslint src tests workflow",
"lint:styles": "stylelint src",
"size": "cross-env NODE_ENV=production electron-vite build && echo 'Build complete. Use rollup-plugin-visualizer for analysis.'",
"dist": "npm run build:before && cross-env IS_DEV=true NODE_ENV=development npm run pack:lode",
"headless": "electron dist/main.js",
"simulate": "npm run dist && ./node_modules/electron/dist/Electron.app/Contents/MacOS/Electron dist/main.js"
},
"dependencies": {
"@bugsnag/js": "^6.4.0",
"@primer/css": "^20.5.1",
"@primer/octicons": "^17.9.0",
"@sentry/electron": "^7.4.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/xterm": "^6.0.0",
"bottleneck": "^2.13.0",
"compare-versions": "^5.0.1",
"date-fns": "^2.16.1",
"decimal.js": "^10.2.0",
"electron-store": "^8.1.0",
"electron-updater": "^6.7.3",
"electron-window-state": "^5.0.3",
"fs-extra": "^7.0.0",
"fuzzysearch": "^1.0.3",
"glob": "^13.0.0",
"has-ansi": "^3.0.0",
"highlight.js": "^10.4.1",
"is-unc-path": "^1.0.0",
"latinize": "^0.4.1",
"lodash": "^4.17.21",
"markdown-it": "^12.0.6",
"memoize-one": "^6.0.0",
"overlayscrollbars": "^1.7.1",
"path-browserify": "^1.0.1",
"pinia": "^3.0.4",
"semver": "^7.6.3",
"sha1-es": "^1.8.2",
"shell-env": "^2.2.0",
"shell-escape": "^0.2.0",
"split.js": "^1.5.10",
"strip-ansi": "^5.0.0",
"tree-kill": "^1.2.1",
"util": "^0.12.3",
"uuid": "^13.0.0",
"vue": "^3.0.0",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.3.3",
"xterm-theme": "^1.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.3.0",
"@electron/notarize": "^3.1.1",
"@playwright/test": "^1.58.2",
"@stylistic/stylelint-plugin": "^5.0.1",
"@types/fs-extra": "^5.0.4",
"@types/is-unc-path": "^1.0.0",
"@types/latinize": "^0.2.15",
"@types/lodash": "^4.14.169",
"@types/markdown-it": "^12.2.3",
"@types/node": "^24.0.0",
"@types/primer__octicons": "^17.5.0",
"@types/semver": "^7.5.3",
"@types/shell-escape": "^0.2.0",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"@vue/compiler-sfc": "^3.0.11",
"@vue/devtools": "^8.0.6",
"@vue/test-utils": "^2.0.0-rc.6",
"chalk": "^2.4.2",
"cross-env": "^7.0.3",
"electron": "^40.0.0",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^9.39.2",
"flush-promises": "^1.0.2",
"jsdom": "^28.0.0",
"license-checker": "^25.0.1",
"parse-author": "^2.0.0",
"postcss-html": "^1.3.0",
"postcss-sass": "^0.5.0",
"sass": "^1.97.3",
"stylelint": "^17.3.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard-scss": "^17.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}