-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.4 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 4.4 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
{
"name": "alkalye",
"private": true,
"version": "0.0.1",
"type": "module",
"bin": {
"alkalye": "./cli.ts"
},
"scripts": {
"dev": "portless run astro dev",
"dev:sync": "portless alkalye-sync sh -c 'bunx jazz-run sync --port \"$PORT\" --host \"$HOST\"'",
"build": "astro check && astro build",
"check": "bun x concurrently \"bun run check:lint\" \"bun run check:types\" \"bun run check:format\" \"bun run check:test\"",
"check:lint": "eslint .",
"check:types": "astro check",
"check:format": "prettier --check .",
"check:test": "bun vitest run",
"typecheck": "astro check",
"test:e2e": "playwright test",
"test:e2e:auth": "playwright test e2e/auth.spec.ts",
"test:e2e:spaces": "playwright test e2e/space.spec.ts",
"test:e2e:doc-collab": "playwright test e2e/document-collab.spec.ts",
"test:e2e:doc": "playwright test e2e/doc.spec.ts",
"test:e2e:headed": "playwright test --headed",
"bench:launch": "bun scripts/benchmark-launch.ts",
"bench:responsiveness": "bun scripts/benchmark-responsiveness.ts",
"bench:responsiveness:assert": "bun scripts/benchmark-responsiveness.ts --cpu 4 --assert",
"bench:responsiveness:book": "bun scripts/benchmark-responsiveness.ts --kb 1024 --cpu 4",
"preview": "astro preview",
"format": "prettier --write .",
"test": "vitest",
"prepare": "effect-language-service patch"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"@ccssmnn/intl": "^0.1.1",
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.1",
"@codemirror/language-data": "^6.5.2",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.11",
"@effect/cli": "^0.73.2",
"@effect/platform": "^0.94.5",
"@effect/platform-node": "^0.104.1",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@fontsource/ia-writer-mono": "^5.2.5",
"@lezer/highlight": "^1.2.3",
"@plausible-analytics/tracker": "^0.4.4",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-form": "^1.27.7",
"@tanstack/react-router": "^1.157.7",
"@tanstack/react-virtual": "^3.13.18",
"@tanstack/router-devtools": "^1.157.7",
"@tanstack/router-plugin": "^1.157.7",
"astro": "^5.16.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cojson": "0.20.18",
"cojson-transport-ws": "0.20.18",
"dompurify": "^3.3.1",
"effect": "^3.19.19",
"fast-myers-diff": "^3.2.0",
"idb-keyval": "^6.2.2",
"jazz-react": "^0.14.28",
"jazz-tools": "0.20.18",
"jszip": "^3.10.1",
"lucide-react": "^0.563.0",
"marked": "^17.0.1",
"marked-shiki": "^1.2.1",
"mediabunny": "^1.30.1",
"motion": "^12.29.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-easy-crop": "^5.5.6",
"react-textarea-autosize": "^8.5.9",
"shadcn": "^3.7.0",
"shiki": "^3.21.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tldraw": "^5.2.2",
"tw-animate-css": "^1.4.0",
"unicode-segmenter": "0.12.0",
"vite-plugin-pwa": "^1.2.0",
"zod": "^4.3.6",
"zustand": "^5.0.10"
},
"overrides": {
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.11",
"cojson-core-rn": "npm:cojson@*",
"prosemirror-model": "^1.25.9",
"prosemirror-transform": "^1.12.0",
"prosemirror-view": "^1.42.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/react": "^4.4.2",
"@astrojs/ts-plugin": "^1.10.6",
"@astrojs/vercel": "^9.0.4",
"@effect/language-service": "^0.80.0",
"@eslint/js": "^9.39.2",
"@happy-dom/global-registrator": "^20.3.7",
"@playwright/test": "^1.58.2",
"@types/dompurify": "^3.2.0",
"@types/node": "^24.10.9",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vite-pwa/astro": "^1.2.0",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"effect-solutions": "^0.4.13",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.1.0",
"happy-dom": "^20.3.7",
"jsdom": "^27.4.0",
"portless": "^0.12.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"workbox-window": "^7.4.0"
}
}