-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "cursor-highlight",
"license": "MIT",
"version": "1.0.2",
"main": "electron/main.js",
"author": "Harry Hou <hazyzh@qq.com>",
"description": "This is a utility tool let other guys easily focus on your mouse cursor. Especially effective when you share screen in a meeting session.",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "concurrently -k \"cross-env BROWSER=none yarn dev\" \"yarn electron\"",
"electron": "wait-on tcp:3000 && cross-env IS_DEV=true electron .",
"electron:pack": "electron-builder --dir",
"electron:builder": "electron-builder",
"build:for:electron": "cross-env ELECTRON=true vite build",
"app:build": "yarn build:for:electron && yarn electron:builder",
"build:for:github:ci": "yarn app:build --publish always"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"electron": "^17.1.2",
"electron-builder": "^22.14.13",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"events": "^3.3.0",
"less": "^4.1.3",
"typescript": "^4.6.3",
"vite": "^2.8.0",
"wait-on": "^6.0.1"
},
"build": {
"appId": "github.com.hazyzh",
"productName": "Cursor Highlight",
"directories": {
"output": "app_output"
},
"copyright": "Copyright © 2022 Harry Hou",
"mac": {
"category": "public.app-category.utilities",
"target": "dmg",
"extendInfo": {
"LSUIElement": 1
}
}
}
}