-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.42 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
{
"name": "twenty-app",
"title": "Twenty App",
"version": "0.1.3",
"description": "Desktop client for Twenty, a self-hosted, open-source, cross-platform, and privacy-focused alternative to Notion. Built with Rust, Tauri, and Next.js.",
"license": "MIT",
"private": true,
"type": "module",
"author": "Rubix Studios <hello@rubixstudios.com.au> (https://rubixstudios.com.au)",
"homepage": "https://rubixstudios.com.au",
"repository": {
"type": "git",
"url": "git+https://github.com/rubix-studios-pty-ltd/twenty-app.git"
},
"bugs": {
"url": "https://github.com/rubix-studios-pty-ltd/twenty-app/issues"
},
"maintainers": [
{
"name": "Rubix Studios",
"email": "hello@rubixstudios.com.au",
"url": "https://rubixstudios.com.au"
}
],
"keywords": [
"twenty",
"crm",
"desktop",
"client",
"tauri",
"rust",
"nextjs",
"react",
"typescript",
"cross-platform",
"windows",
"linux",
"macos"
],
"scripts": {
"dev": "tauri dev",
"dev:ui": "next dev -p 5174",
"build": "tauri build",
"build:ui": "next build",
"clean": "pnpm biome migrate --write && pnpm run lint:fix && pnpm run format",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"release:new": "node scripts/release.mjs",
"tauri:update": "cd src-tauri && cargo update && cargo upgrade && cargo fmt",
"typecheck": "tsc --noEmit",
"update": "pnpm self-update && pnpm update --latest --recursive && pnpm install && pnpm prune && pnpm dedupe && pnpm run clean && pnpm run tauri:update"
},
"packageManager": "pnpm@11.9.0",
"engines": {
"node": "24.x || 25.x",
"pnpm": ">=10"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.21.0",
"next": "^16.2.9",
"next-themes": "^0.4.6",
"radix-ui": "^1.6.0",
"react": "^19.2.7",
"react-dom": "19.2.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@tailwindcss/postcss": "^4.3.1",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/cli": "^2.11.3",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"shadcn": "^4.12.0",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3"
}
}