-
Notifications
You must be signed in to change notification settings - Fork 561
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.16 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
{
"name": "opensquilla-webui",
"private": true,
"version": "0.2.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run typecheck && npm run build:artifact",
"build:artifact": "vite build && node scripts/normalize-dist.mjs && node scripts/check-theme-bundle.mjs && node scripts/check-runtime-bundle.mjs && node scripts/verify-dist.mjs --write && node scripts/stage-dist.mjs",
"verify:dist": "node scripts/verify-dist.mjs",
"verify:release-dist": "node scripts/verify-dist.mjs --forbid-personal-bgm",
"preview": "vite preview",
"check:architecture": "node scripts/check-architecture.mjs && npm run check:rpc-architecture && node scripts/check-chat-security.mjs && node scripts/check-webui-colors.mjs && node scripts/check-webui-motion.mjs && node scripts/check-webui-radius.mjs && node scripts/check-theme-contract.mjs && node scripts/check-theme-scope.mjs && node scripts/check-cross-surface-tokens.mjs && node scripts/check-i18n.mjs && node scripts/check-channel-catalog-i18n.mjs && node scripts/check-readme-locales.mjs",
"check:rpc-architecture": "node scripts/lib/rpc-architecture-gate.mjs",
"check:readme-locales": "node scripts/check-readme-locales.mjs",
"typecheck": "npm run check:architecture && vue-tsc --noEmit",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug"
},
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@tanstack/vue-virtual": "^3.13.36",
"@types/dompurify": "^3.0.5",
"dompurify": "^3.4.12",
"highlight.js": "^11.11.1",
"html-to-image": "^1.11.13",
"katex": "^0.17.0",
"marked": "^18.0.4",
"monaco-editor": "^0.56.0",
"parse5": "^8.0.1",
"pinia": "^2.1.7",
"vue": "^3.5.0",
"vue-i18n": "^11.4.6",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@vitejs/plugin-vue": "^6.0.7",
"ajv": "8.17.1",
"happy-dom": "^20.10.6",
"json-schema-to-typescript": "15.0.4",
"typescript": "^5.4.5",
"vite": "^8.0.16",
"vitest": "^4.1.9",
"vue-tsc": "^3.3.9"
}
}