-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.2 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
{
"name": "typehere",
"productName": "Type Here",
"description": "A textarea with vim (and more).",
"author": "Shaoru Ian Huang",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "dist-electron/main/index.js",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"build": {
"appId": "com.typehere.app",
"asar": true,
"directories": {
"output": "release/${version}"
},
"files": [
"dist-electron",
"dist"
],
"mac": {
"artifactName": "${productName}_${version}.${ext}",
"icon": "icons/icon.icns",
"target": [
"dmg"
],
"notarize": false,
"hardenedRuntime": false,
"identity": null
}
},
"scripts": {
"dev": "vite",
"dev:electron": "vite --config electron-vite.config.ts",
"build": "tsc && vite build",
"build:electron": "tsc && vite build --config electron-vite.config.ts && electron-builder",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"open": "open release/0.0.1/mac-arm64/",
"preview": "vite preview"
},
"dependencies": {
"@seznam/compose-react-refs": "^1.0.6",
"@vercel/analytics": "^1.2.2",
"ace-builds": "^1.32.6",
"crypto-js": "^4.2.0",
"electron-store": "^9.0.0",
"fuse.js": "^7.0.0",
"is-electron": "^2.2.2",
"lz-string": "^1.5.0",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"vite-plugin-replace": "^0.1.1"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"electron-updater": "^6.1.8",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.2.2",
"vite": "^5.1.0",
"vite-plugin-electron": "^0.28.7",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-pwa": "^0.19.4"
}
}