-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·89 lines (89 loc) · 2.55 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
{
"name": "clean-mode",
"version": "1.1.1",
"description": "A macOS app that safely blocks keyboard, trackpad, and system shortcuts while you wipe down your Mac.",
"author": "MrBarkan",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"type-check": "tsc",
"preview": "vite preview",
"electron:dev": "concurrently -k \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && electron-builder",
"native:build": "npm --prefix electron/native/eventtap run build",
"native:build-current": "npm --prefix electron/native/eventtap run build-current-arch"
},
"dependencies": {
"@fontsource/geist-mono": "^5.2.8",
"@fontsource/geist-sans": "^5.2.5",
"@fontsource/instrument-serif": "^5.2.8",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"electron": "^44.3.0",
"electron-builder": "^24.13.3",
"node-gyp": "^10.2.0",
"node-gyp-build": "^4.8.0",
"prebuildify": "^6.0.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.cleanmode.app",
"productName": "CleanMode",
"afterPack": "scripts/after-pack.js",
"afterSign": "scripts/notarize.js",
"afterAllArtifactBuild": "scripts/staple-dmg.js",
"mac": {
"category": "public.app-category.utilities",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"extendInfo": {
"SUPublicEDKey": "Y95K8qPB+GjLM3ssC6l1jOFZqpETG3aVC3D1btrbmd8=",
"CFBundleIconName": "AppIcon"
},
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
{
"target": "zip",
"arch": [
"arm64",
"x64"
]
}
],
"icon": "build/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"notarize": false
},
"directories": {
"buildResources": "build",
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json",
"!electron/native/eventtap/build/**",
"electron/native/eventtap/prebuilds/**"
],
"extends": null
}
}