-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.07 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.07 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
{
"name": "pause",
"version": "0.9.3",
"description": "Healthy productivity companion",
"main": "./out/main/index.js",
"bundleId": "org.thomsch.pause",
"author": {
"name": "Thomsch",
"email": "thms.sch@gmail.com",
"url": "https://github.com/Thomsch/pause"
},
"homepage": "https://github.com/Thomsch/pause",
"license": "ISC",
"scripts": {
"dev": "electron-vite dev",
"start": "electron-vite preview",
"build": "npm run typecheck && electron-vite build",
"build:mac": "electron-vite build && electron-builder --mac",
"build:win": "electron-vite build && electron-builder --win",
"build:linux": "electron-vite build && electron-builder --linux",
"deploy": "electron-vite build && electron-builder build --publish always",
"postinstall": "electron-builder install-app-deps",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"format": "prettier --write src/"
},
"repository": {
"type": "git",
"url": "https://github.com/thomsch/pause.git"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"electron-log": "^5.0.0",
"tiny-timer": "^1.5.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.2",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@rushstack/eslint-patch": "^1.10.3",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"dotenv": "^16.4.5",
"electron": "^28.3.2",
"electron-builder": "^24.6.4",
"electron-notarize": "^1.2.2",
"electron-vite": "^2.3.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vue": "^3.4.35",
"vue-tsc": "^2.0.29"
}
}