-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.79 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.79 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
{
"name": "aos-mail",
"version": "0.1.10",
"license": "BUSL-1.1",
"description": "AOS Mail — Agent Operated System for Mail. Native-feeling, multi-inbox, Claude-powered Mac email client.",
"repository": {
"type": "git",
"url": "https://github.com/mrdulasolutions/AOS-Mail.git"
},
"type": "module",
"workspaces": [
"src/extensions-private/*"
],
"scripts": {
"dev": "npm run tauri:dev",
"dev:renderer": "vite",
"build:renderer": "vite build",
"build:sidecar": "npm --prefix sidecar run prepare-node && npm --prefix sidecar run build && npm --prefix sidecar run package && npm --prefix sidecar run runtime-modules",
"build": "npm run build:sidecar && npm run build:renderer && tauri build",
"tauri": "tauri",
"tauri:dev": "npm run build:sidecar && tauri dev",
"tauri:build": "npm run build:sidecar && tauri build",
"typecheck": "tsc --noEmit",
"typecheck:sidecar": "npm --prefix sidecar run typecheck",
"test:e2e": "playwright test --project=e2e",
"test:sidecar": "./scripts/run-sidecar-tests.sh",
"test:problematic": "playwright test --project=problematic",
"test:bench": "playwright test --project=benchmark",
"test:headed": "playwright test --headed",
"lint": "eslint src/ sidecar/src/",
"lint:fix": "eslint src/ sidecar/src/ --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}' 'sidecar/src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}' 'sidecar/src/**/*.ts'",
"eval": "npx tsx tests/evals/runner.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.37",
"@anthropic-ai/sdk": "^0.71.2",
"@floating-ui/dom": "^1.7.6",
"@modelcontextprotocol/sdk": "^1.26.0",
"@tanstack/react-query": "^5.62.0",
"@tanstack/react-virtual": "^3.13.21",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-log": "^2",
"@tauri-apps/plugin-os": "^2",
"@tauri-apps/plugin-process": "^2",
"@tauri-apps/plugin-shell": "^2",
"@tauri-apps/plugin-store": "^2",
"@tauri-apps/plugin-updater": "^2.10.1",
"@tiptap/extension-image": "^3.19.0",
"@tiptap/extension-link": "^3.19.0",
"@tiptap/extension-placeholder": "^3.19.0",
"@tiptap/extension-text-align": "^3.19.0",
"@tiptap/pm": "^3.19.0",
"@tiptap/react": "^3.19.0",
"@tiptap/starter-kit": "^3.19.0",
"@tiptap/suggestion": "^3.20.0",
"@types/dompurify": "^3.0.5",
"algoliasearch": "^5.50.0",
"better-sqlite3": "^12.8.0",
"dompurify": "^3.3.1",
"googleapis": "^170.1.0",
"mime-types": "^3.0.2",
"nodemailer": "^8.0.4",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"posthog-js": "^1.359.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"semver": "^7.7.4",
"tippy.js": "^6.3.7",
"zod": "^4.3.6",
"zustand": "^5.0.2"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/forms": "^0.5.9",
"@tauri-apps/cli": "^2",
"@types/better-sqlite3": "^7.6.12",
"@types/mime-types": "^3.0.1",
"@types/node": "^22.15.0",
"@types/nodemailer": "^7.0.5",
"@types/pino": "^7.0.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"msw": "^2.12.10",
"postcss": "^8.4.49",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.57.2",
"vite": "^6.0.5"
},
"overrides": {
"protobufjs": "^7.5.8"
}
}