-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.35 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 4.35 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "@every-time/dingo-track",
"version": "1.0.22",
"description": "Time tracking application",
"main": "./out/main/index.js",
"private": true,
"scripts": {
"prebuild": "node scripts/build-aswebauthsession.js",
"dev": "electron-vite dev",
"build": "electron-vite build && node scripts/bundle-mcp-server.js && node scripts/inject-credentials.js",
"dist:mac": "npm run build && electron-builder --mac",
"dist:mac:dev": "npm run build && electron-builder --mac --config.afterSign=scripts/notarize-skip.js --config.extraMetadata.devMode=true",
"dist:mas": "pnpm build && npx electron-builder --mac mas --universal",
"dev:landing": "cd landing-page && vite",
"build:landing": "cd landing-page && NODE_ENV=production vite build && cd .. && npm run copy-landing-assets",
"copy-landing-assets": "cp landing-page/public/header-logo.png docs/ && cp landing-page/public/app-icon.png docs/assets/",
"convert-icons": "node scripts/convert-icons.js",
"test": "vitest run",
"test:calendar": "export $(cat .env.test 2>/dev/null | xargs) && vitest run tests/integration/google-calendar.test.ts",
"test:calendar:watch": "export $(cat .env.test 2>/dev/null | xargs) && vitest tests/integration/google-calendar.test.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"adm-zip": "^0.5.16",
"better-sqlite3": "^12.4.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"esbuild": "^0.27.0",
"express": "^5.1.0",
"zustand": "^5.0.7"
},
"devDependencies": {
"@electron/notarize": "^3.1.0",
"@electron/rebuild": "^4.0.1",
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/ui": "^3.2.4",
"electron": "^31.0.2",
"electron-builder": "^24.13.3",
"electron-vite": "^2.3.0",
"jsdom": "^26.1.0",
"playwright": "^1.56.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"sharp": "^0.33.2",
"typescript": "^5.5.3",
"vite": "^5.3.1",
"vitest": "^3.2.4"
},
"build": {
"appId": "com.everytime.trak",
"productName": "Dingo Track",
"directories": {
"output": "dist-electron"
},
"files": [
"out/**/*",
"assets/**/*"
],
"extraResources": [
{
"from": "native/aswebauthsession",
"to": "native/aswebauthsession",
"filter": [
"index.js",
"build/Release/aswebauthsession.node"
]
}
],
"asar": true,
"icon": "assets/app-icon.icns",
"mac": {
"icon": "assets/app-icon.icns",
"category": "public.app-category.productivity",
"target": [
{
"target": "dmg",
"arch": [
"universal"
]
}
],
"x64ArchFiles": "**/native/aswebauthsession/build/Release/aswebauthsession.node",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"notarize": false,
"extendInfo": {
"CFBundleName": "Dingo Track",
"CFBundleDisplayName": "Dingo Track"
}
},
"afterSign": "scripts/notarize.js",
"mas": {
"type": "distribution",
"category": "public.app-category.productivity",
"target": [
{
"target": "mas",
"arch": [
"universal"
]
}
],
"x64ArchFiles": "**/native/aswebauthsession/build/Release/aswebauthsession.node",
"entitlements": "resources/entitlements.mas.plist",
"entitlementsInherit": "resources/entitlements.mas.inherit.plist",
"hardenedRuntime": false,
"provisioningProfile": "resources/Dingo_Track_Mac_App_Store.provisionprofile",
"mergeASARs": true,
"extendInfo": {
"CFBundleName": "Dingo Track",
"CFBundleDisplayName": "Dingo Track"
}
},
"dmg": {
"format": "ULFO"
},
"win": {
"icon": "assets/app-icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"linux": {
"icon": "assets/app-icon.png",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
}
}
}