-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.74 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.74 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
{
"name": "magi",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "nuxt build",
"build:test": "NITRO_PRESET=node-server NODE_ENV=test pnpm build",
"dev": "VITE_PLUGIN_PWA=true nuxt dev",
"dev:prepare": "nuxt prepare",
"dev:no-pwa": "nuxt dev",
"generate": "nuxt generate",
"preview": "pnpm run build && nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --ignore-pattern AGENTS.md",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:nuxt": "vitest --project nuxt",
"test:e2e": "pnpm build:test && pnpm test:e2e:prebuilt",
"test:e2e:ui": "pnpm build:test && pnpm test:e2e:prebuilt --ui",
"test:e2e:prebuilt": "playwright test",
"test:e2e:webserver": "NODE_ENV=test pnpm exec nuxt preview --port 5678",
"test:typecheck": "nuxt typecheck",
"test:unit": "vitest --project unit",
"test:watch": "vitest --watch"
},
"dependencies": {
"@matrix-org/matrix-sdk-crypto-wasm": "^18.2.0",
"@nuxt/fonts": "0.14.0",
"@nuxt/hints": "1.0.3",
"@nuxt/icon": "2.2.1",
"@nuxt/image": "2.0.0",
"@nuxtjs/color-mode": "4.0.0",
"@nuxtjs/seo": "5.1.3",
"@peterbud/nuxt-query": "1.7.0",
"@tanstack/vue-hotkeys": "^0.10.0",
"@vite-pwa/nuxt": "^1.1.1",
"@vueuse/nuxt": "14.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.4.2",
"es-toolkit": "^1.46.1",
"idb-keyval": "^6.2.2",
"marked": "^18.0.2",
"matrix-js-sdk": "^41.4.0",
"motion-v": "^2.2.1",
"nuxt": "^4.4.2",
"nuxt-security": "2.5.1",
"nuxt-vitalizer": "2.0.0",
"quick-lru": "^7.3.0",
"reka-ui": "^2.9.6",
"tailwind-merge": "^3.5.0",
"temporal-polyfill": "^0.3.2",
"ufo": "^1.6.4",
"unstorage": "^1.17.5",
"valibot": "^1.3.1",
"virtua": "^0.49.1",
"vue-router": "^5.0.6"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@faker-js/faker": "^10.4.0",
"@iconify-json/tabler": "^1.2.33",
"@nuxt/eslint": "1.15.2",
"@nuxt/test-utils": "^4.0.3",
"@playwright/test": "^1.59.1",
"@regle/nuxt": "1.24.0",
"@types/node": "^25.6.0",
"@unocss/eslint-plugin": "^66.6.8",
"@unocss/nuxt": "^66.6.8",
"@vitest/coverage-v8": "^4.1.5",
"@vue/test-utils": "^2.4.10",
"eslint": "^10.2.1",
"eslint-plugin-format": "^2.0.1",
"happy-dom": "^20.9.0",
"playwright-core": "^1.59.1",
"typescript": "^6.0.3",
"unocss": "^66.6.8",
"unocss-preset-animations": "^1.3.0",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"vue-tsc": "^3.2.7",
"workbox-core": "^7.4.0",
"workbox-expiration": "^7.4.0",
"workbox-precaching": "^7.4.0",
"workbox-routing": "^7.4.0",
"workbox-strategies": "^7.4.0"
}
}