-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "@packages/electron",
"version": "0.0.0-development",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && yarn build:esm && yarn build:cjs",
"build-binary": "node ./bin/cypress-electron --install",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean-deps": "rimraf node_modules",
"postinstall": "echo '@packages/electron needs: yarn build'",
"lint": "eslint",
"start": "./bin/cypress-electron",
"test": "yarn vitest"
},
"dependencies": {
"@packages/icons": "0.0.0-development",
"@packages/stderr-filtering": "0.0.0-development",
"debug": "^4.3.4",
"fs-extra": "9.1.0",
"minimist": "1.2.8"
},
"devDependencies": {
"@electron/fuses": "1.8.0",
"@electron/packager": "18.3.6",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.31.0",
"execa": "4.1.0",
"mocha": "3.5.3",
"systeminformation": "^5.27.7",
"vitest": "^3.2.4"
},
"files": [
"dist",
"bin",
"app"
],
"bin": {
"cypress-electron": "./bin/cypress-electron"
},
"types": "dist/index.d.ts",
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --fix"
},
"license": "MIT",
"nx": {}
}