-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.45 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 4.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "image-optimizer",
"version": "2.0.0",
"description": "A tool for optimizing images and vector graphics",
"main": "build/main/index.js",
"packageManager": "pnpm@10.29.2",
"engines": {
"node": "24.x",
"pnpm": "10.x"
},
"scripts": {
"dev": "concurrently --kill-others --names renderer,main,electron \"pnpm dev:renderer\" \"pnpm dev:main\" \"pnpm dev:electron\"",
"dev:renderer": "vite --host 127.0.0.1 --port 3000 --strictPort",
"dev:main": "tsc -p tsconfig.main.json --watch --preserveWatchOutput",
"dev:electron": "wait-on tcp:127.0.0.1:3000 build/main/index.js && electronmon .",
"clean": "rimraf build/main build/renderer build/shared",
"build": "pnpm clean && pnpm build:main && pnpm build:renderer",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"package": "pnpm build && electron-builder --dir",
"package:mac": "pnpm build && electron-builder --mac",
"package:mac:local": "pnpm build && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --mac --publish never --config.mac.notarize=false",
"package:win": "pnpm build && electron-builder --win",
"package:linux": "pnpm build && electron-builder --linux",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"typecheck": "pnpm typecheck:electron && pnpm typecheck:renderer",
"typecheck:electron": "tsc --noEmit -p tsconfig.main.json",
"typecheck:renderer": "vue-tsc --noEmit -p tsconfig.json",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"check": "pnpm lint && pnpm typecheck && pnpm test",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "simple-git-hooks"
},
"repository": "https://github.com/antonreshetov/image-optimizer",
"author": {
"name": "Anton Reshetov",
"url": "https://github.com/antonreshetov"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,vue}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yaml,yml,css,scss}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "pnpm exec commitlint --edit \"$1\""
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"cwebp-bin",
"electron",
"electron-winstaller",
"esbuild",
"gifsicle",
"mozjpeg",
"pngquant-bin",
"simple-git-hooks"
]
},
"dependencies": {
"@lucide/vue": "^1.29.0",
"@tailwindcss/vite": "^4.3.3",
"@vueuse/core": "^14.4.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"countup.js": "^2.10.1",
"cwebp-bin": "8.0.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.8.9",
"fs-extra": "^11.4.0",
"gifsicle": "7.0.1",
"junk": "^3.1.0",
"mime-types": "^3.0.2",
"mozjpeg": "8.0.0",
"pngquant-bin": "9.0.0",
"queue": "^6.0.2",
"reka-ui": "^2.10.1",
"svgo": "^3.3.2",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"vue": "^3.5.41",
"vue-component-type-helpers": "^3.3.9",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@types/canvas-confetti": "^1.9.0",
"@types/estree": "^1.0.9",
"@types/fs-extra": "^11.0.4",
"@types/gifsicle": "^5.2.2",
"@types/mime-types": "^3.0.1",
"@types/mozjpeg": "^5.0.2",
"@types/node": "^24.0.0",
"@types/pngquant-bin": "^4.0.2",
"@types/web-bluetooth": "^0.0.21",
"@vitejs/plugin-vue": "^6.0.8",
"bumpp": "^12.2.0",
"concurrently": "^10.0.4",
"electron": "^43.3.0",
"electron-builder": "^26.15.3",
"electron-devtools-installer": "^4.0.0",
"electronmon": "^2.0.4",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.10.0",
"globals": "^17.9.0",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"sass": "^1.102.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.66.0",
"unplugin-icons": "^23.0.1",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.2.1",
"vitest": "^4.1.10",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.9",
"wait-on": "^9.1.0"
}
}