-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 909 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 909 Bytes
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
{
"name": "timer",
"version": "0.1.0",
"description": "Timer Application",
"main": "main/main.js",
"scripts": {
"dev": "node scripts/dev-server.js",
"build": "node scripts/build.js && electron-builder",
"build:win": "node scripts/build.js && electron-builder --win",
"build:mac": "node scripts/build.js && electron-builder --mac",
"build:linux": "node scripts/build.js && electron-builder --linux"
},
"repository": "https://github.com/savhascelik/timer.git",
"author": {
"name": "Savas Celik",
"url": "https://github.com/savhascelik"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.4.1",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"electron": "^32.1.2",
"electron-builder": "^25.1.6",
"typescript": "^5.2.2",
"vite": "^4.5.0"
},
"dependencies": {
"howler": "^2.2.4",
"node-notifier": "^10.0.1",
"vue": "^3.3.8"
}
}