-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 4.19 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 4.19 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
{
"name": "@freeany/local-squeeze",
"productName": "LocalSqueeze",
"version": "1.0.5",
"description": "Local Image Compression Tool",
"main": ".vite/build/main.js",
"scripts": {
"start": "electron-forge start",
"dev": "npm run start",
"package": "electron-forge package",
"make": "cross-env NODE_ENV=production electron-forge make",
"make:dev": "electron-forge make",
"make:win": "cross-env NODE_ENV=production electron-forge make --platform=win32",
"make:mac": "cross-env NODE_ENV=production electron-forge make --platform=darwin",
"make:mac:intel": "cross-env NODE_ENV=production npm_config_target_arch=x64 electron-forge make --platform=darwin --arch=x64",
"make:mac:arm64": "cross-env NODE_ENV=production npm_config_target_arch=arm64 electron-forge make --platform=darwin --arch=arm64",
"make:all": "cross-env NODE_ENV=production electron-forge make --platform=win32 && cross-env NODE_ENV=production electron-forge make --platform=darwin && cross-env NODE_ENV=production electron-forge make --platform=linux",
"publish": "cross-env NODE_ENV=production electron-forge publish",
"publish:local": "env-cmd cross-env NODE_ENV=production electron-forge publish",
"publish:win": "env-cmd cross-env NODE_ENV=production electron-forge publish --platform=win32",
"publish:mac": "env-cmd cross-env NODE_ENV=production electron-forge publish --platform=darwin",
"publish:linux": "env-cmd cross-env NODE_ENV=production electron-forge publish --platform=linux",
"publish:all": "npm run publish:win && npm run publish:mac && npm run publish:linux",
"publish:draft": "cross-env NODE_ENV=development electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix",
"type-check": "tsc --noEmit",
"clean": "rimraf out dist .vite",
"clean:cache": "rimraf node_modules/.cache",
"clean:all": "npm run clean && npm run clean:cache && rimraf node_modules",
"prerelease": "npm run lint && npm run type-check",
"release:patch": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags"
},
"keywords": [],
"author": {
"name": "lhr",
"email": "lhr_freeany@163.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/freeany/LocalSqueeze.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@electron-forge/cli": "^7.8.1",
"@electron-forge/maker-deb": "^7.8.1",
"@electron-forge/maker-rpm": "^7.8.1",
"@electron-forge/maker-squirrel": "^7.8.1",
"@electron-forge/maker-wix": "^7.8.1",
"@electron-forge/maker-zip": "^7.8.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.8.1",
"@electron-forge/plugin-fuses": "^7.8.1",
"@electron-forge/plugin-vite": "^7.8.1",
"@electron-forge/publisher-github": "^7.8.1",
"@electron/fuses": "^1.8.0",
"@tailwindcss/postcss": "^4.1.11",
"@timfish/forge-externals-plugin": "^0.2.1",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/node": "^24.0.12",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"electron": "37.2.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.0.4",
"ts-node": "^10.9.2",
"typescript": "~4.5.4",
"vite": "^5.4.19"
},
"dependencies": {
"@electron-forge/maker-dmg": "^7.8.2",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.1",
"electron-squirrel-startup": "^1.0.1",
"env-cmd": "^10.1.0",
"lucide-react": "^0.525.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "6.30.1",
"react-router-dom": "^6.30.1",
"sharp": "^0.34.3",
"tailwind-merge": "^3.3.1"
}
}