-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.73 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.73 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
{
"name": "localmost",
"productName": "localmost",
"version": "0.3.0",
"description": "Run GitHub actions locally when possible.",
"author": "Bright Fulton",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/bfulton/localmost.git"
},
"main": "dist/main.js",
"bin": {
"localmost": "./dist/cli.js"
},
"scripts": {
"start": "npm run prebuild && npm run build:dev && electron .",
"start:dev": "npm run prebuild && concurrently \"npm run watch\" \"wait-on dist/main.js && electron .\"",
"build": "npm run prebuild && cross-env NODE_ENV=production webpack --config webpack.config.js && npm run build:cli",
"build:cli": "cross-env NODE_ENV=production webpack --config webpack.config.cli.js",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.config.js",
"watch": "cross-env NODE_ENV=development webpack --config webpack.config.js --watch",
"package": "npm run build && electron-forge package",
"make": "npm run build && electron-forge make",
"prebuild": "npm run icons && npm run build-info",
"build-info": "node scripts/generate-build-info.js",
"lint": "eslint src --ext .ts,.tsx",
"icons:svg": "node scripts/generate-icons.js",
"icons": "npm run icons:svg && npm run icons:convert",
"icons:convert": "node scripts/convert-icons.js",
"pretest": "npm run build-info",
"test": "jest --config jest.config.js && jest --config jest.config.renderer.js",
"test:main": "jest --config jest.config.js",
"test:renderer": "jest --config jest.config.renderer.js",
"test:watch": "jest --config jest.config.js --watch",
"test:coverage": "jest --config jest.config.js --coverage",
"build:e2e": "npm run build && electron-forge package",
"test:e2e": "npm run build:e2e && npx playwright test",
"clean": "rm -rf dist release",
"analyze": "cross-env NODE_ENV=production webpack --config webpack.config.js --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"devDependencies": {
"@electron-forge/cli": "^7.10.2",
"@electron-forge/maker-dmg": "^7.10.2",
"@electron-forge/maker-zip": "^7.10.2",
"@electron-forge/plugin-auto-unpack-natives": "^7.10.2",
"@electron-forge/plugin-fuses": "^7.10.2",
"@electron/fuses": "^1.8.0",
"@playwright/test": "^1.49.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"electron": "^39.2.6",
"electron-updater": "^6.6.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"html-webpack-plugin": "^5.6.0",
"icns-lib": "^1.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"sharp": "^0.34.5",
"source-map-explorer": "^2.5.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"wait-on": "^7.2.0",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.1",
"@zubridge/electron": "^2.1.1",
"is-camera-on": "^4.0.0",
"js-yaml": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tar": "^7.5.2",
"xstate": "^5.25.0",
"zustand": "^5.0.9"
},
"overrides": {
"tmp": "^0.2.5"
}
}