-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "kokon",
"main": "dist/app.js",
"license": "MIT",
"version": "1.1.0",
"author": "Anton Cherninanu <[email protected]>",
"description": "A lightweight macOS app for extracting archive files, with a focus on RAR format support. Simple, fast, and reliable! 📦✨",
"keywords": [
"rar",
"unrar",
"extract",
"archive",
"macos",
"electron",
"app"
],
"scripts": {
"start": "concurrently \"npm run start:vite\" \"npm run start:electron\"",
"start:electron": "tsc && electron --experimental-modules .",
"start:vite": "vite",
"build": "npm run build:ui && electron-builder -c electron-builder.config.json",
"build:ui": "vite build",
"format": "prettier --write .",
"prepare": "husky install",
"cz": "cz"
},
"devDependencies": {
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"commitizen": "^4.3.1",
"concurrently": "^9.1.0",
"cz-emoji": "^1.3.2-canary.2",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"typescript": "^5.7.2",
"vite": "^6.0.3"
},
"dependencies": {
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"file-type": "^16.5.3",
"node-unrar-js": "^2.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.82.0"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,md}": [
"npm run format"
]
}
}