generated from cawa-93/vite-electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.5 KB
/
package.json
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
{
"name": "Glassdown",
"private": true,
"keywords": [
"Glassdown",
"Markdown",
"React",
"Electron",
"Vite",
"TypeScript"
],
"author": "Jurredr",
"license": "MIT",
"engines": {
"node": ">=v14.16",
"npm": ">=7.7"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build --config electron-builder.config.js --dir --config.asar=false",
"pretest": "cross-env MODE=test npm run build",
"test": "node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue",
"typecheck-main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck-preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck-renderer": "tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run typecheck-main && npm run typecheck-preload && npm run typecheck-renderer"
},
"browserslist": [
"Chrome 91"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run typecheck"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix"
},
"devDependencies": {
"@types/electron-devtools-installer": "2.2.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"cross-env": "7.0.3",
"electron": "13.2.3",
"electron-builder": "22.11.7",
"electron-devtools-installer": "3.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"lint-staged": "11.1.2",
"simple-git-hooks": "2.6.1",
"spectron": "15.0.0",
"typescript": "4.4.2",
"vite": "2.5.3"
},
"dependencies": {
"@codemirror/commands": "^0.19.2",
"@codemirror/gutter": "^0.19.1",
"@codemirror/highlight": "^0.19.4",
"@codemirror/history": "^0.19.0",
"@codemirror/lang-javascript": "^0.19.1",
"@codemirror/lang-markdown": "^0.19.1",
"@codemirror/language": "^0.19.2",
"@codemirror/language-data": "^0.19.0",
"@codemirror/matchbrackets": "^0.19.1",
"@codemirror/state": "^0.19.1",
"@codemirror/theme-one-dark": "^0.19.0",
"assert": "^2.0.0",
"electron-updater": "4.5.2",
"github-markdown-css": "^4.0.0",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark-gfm": "^2.0.0",
"remark-parse": "^10.0.0",
"remark-react": "^9.0.1",
"unified": "^10.1.0"
}
}