-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.84 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
{
"name": "goworks",
"private": true,
"version": "0.8.1",
"type": "module",
"description": "Open-source Electron desktop app for Google Workspace administration — bulk user lifecycle management, offboarding/onboarding, Gmail signature deployment, and group management. Runs fully locally, no server required.",
"keywords": [
"google-workspace",
"google-workspace-admin",
"google-admin-sdk",
"workspace-management",
"user-lifecycle-management",
"offboarding",
"onboarding",
"gmail-signature",
"gmail-signature-manager",
"google-groups",
"bulk-operations",
"electron",
"desktop-app",
"react",
"typescript"
],
"homepage": "https://github.com/umutcankurt/goworks#readme",
"bugs": {
"url": "https://github.com/umutcankurt/goworks/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umutcankurt/goworks.git"
},
"license": "Apache-2.0",
"author": "umutcankurt (https://github.com/umutcankurt)",
"scripts": {
"dev": "vite",
"demo": "VITE_DEMO=1 VITE_DEMO_LANG=tr vite",
"demo:en": "VITE_DEMO=1 VITE_DEMO_LANG=en vite",
"demo:onboarding": "VITE_DEMO=1 VITE_DEMO_ONBOARDING=1 VITE_DEMO_LANG=tr vite",
"demo:onboarding:en": "VITE_DEMO=1 VITE_DEMO_ONBOARDING=1 VITE_DEMO_LANG=en vite",
"demo:check": "node scripts/check-demo-coverage.mjs",
"prebuild": "node -e \"const fs=require('fs');for(const d of ['dist','dist-electron'])fs.rmSync(d,{recursive:true,force:true})\"",
"build": "tsc && vite build && node scripts/check-bundle-secrets.mjs && electron-builder -mw",
"secrets:check": "node scripts/check-bundle-secrets.mjs",
"lint": "eslint . --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"i18n:check": "node scripts/check-i18n-parity.mjs",
"postlint": "node scripts/check-demo-coverage.mjs && node scripts/check-lucide-icons.mjs && node scripts/check-oss-attribution.mjs",
"icons:check": "node scripts/check-lucide-icons.mjs",
"oss:check": "node scripts/check-oss-attribution.mjs",
"prepare": "husky || true"
},
"dependencies": {
"@noble/hashes": "^2.2.0",
"@types/papaparse": "^5.5.2",
"better-sqlite3": "^13.0.2",
"bottleneck": "^2.19.5",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"framer-motion": "^12.34.2",
"google-auth-library": "^10.9.1",
"googleapis": "^173.0.0",
"i18next": "^26.3.6",
"lucide-react": "^1.27.0",
"papaparse": "^5.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^19.1.1",
"react-i18next": "^17.0.11",
"react-router-dom": "^7.13.0",
"recharts": "^3.10.1",
"sanitize-html": "^2.17.3"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@tailwindcss/postcss": "^4.2.0",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/react-router-dom": "^5.3.3",
"@types/sanitize-html": "^2.16.1",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitejs/plugin-react": "^6.0.4",
"autoprefixer": "^10.4.24",
"electron": "^43.2.0",
"electron-builder": "^26.15.3",
"eslint": "^9.39.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.8.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"postcss": "^8.5.6",
"tailwindcss": "^4.2.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vite-plugin-electron": "^1.1.0",
"vite-plugin-electron-renderer": "^1.0.0",
"vitest": "^4.0.18"
},
"main": "dist-electron/main.js",
"engines": {
"node": ">=22.12.0",
"npm": ">=11.0.0"
}
}