2026-03-15 19:44:02 +01:00
|
|
|
{
|
|
|
|
|
"name": "owncord-client",
|
|
|
|
|
"private": true,
|
2026-08-28 06:54:32 +02:00
|
|
|
"version": "1.2.0-alpha.4",
|
2026-03-15 19:44:02 +01:00
|
|
|
"type": "module",
|
2026-08-28 06:54:32 +02:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=24",
|
|
|
|
|
"npm": ">=10"
|
|
|
|
|
},
|
2026-03-15 19:44:02 +01:00
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite",
|
2026-03-30 16:35:02 +02:00
|
|
|
"build": "tsc -p tsconfig.build.json && vite build",
|
2026-03-15 19:44:02 +01:00
|
|
|
"preview": "vite preview",
|
|
|
|
|
"tauri": "tauri",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:unit": "vitest run tests/unit",
|
|
|
|
|
"test:integration": "vitest run tests/integration",
|
2026-08-28 06:54:32 +02:00
|
|
|
"test:contract": "vitest run tests/contract",
|
2026-03-15 19:44:02 +01:00
|
|
|
"test:e2e": "playwright test",
|
2026-03-17 02:56:19 +01:00
|
|
|
"test:e2e:prod": "npm run build && playwright test --config playwright.config.prod.ts",
|
2026-03-18 14:13:52 +01:00
|
|
|
"test:e2e:native": "playwright test --config playwright.config.native.ts",
|
2026-08-07 21:20:48 +02:00
|
|
|
"test:e2e:admin": "playwright test --config playwright.config.admin.ts",
|
2026-03-16 16:43:46 +01:00
|
|
|
"test:e2e:ui": "playwright test --ui",
|
2026-03-15 19:44:02 +01:00
|
|
|
"test:watch": "vitest",
|
2026-03-29 19:40:11 +02:00
|
|
|
"test:coverage": "vitest run --coverage",
|
2026-04-01 11:40:55 +02:00
|
|
|
"test:browser": "vitest run --config vitest.config.browser.ts",
|
2026-03-30 16:35:02 +02:00
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"typecheck:build": "tsc -p tsconfig.build.json --noEmit",
|
2026-08-07 21:20:48 +02:00
|
|
|
"typecheck:e2e": "tsc -p tsconfig.e2e.json --noEmit",
|
2026-04-01 11:40:55 +02:00
|
|
|
"lint": "oxlint src/ && eslint src/",
|
|
|
|
|
"lint:fix": "eslint src/ --fix",
|
|
|
|
|
"lint:ox": "oxlint src/",
|
2026-04-01 13:49:06 +02:00
|
|
|
"knip": "knip",
|
|
|
|
|
"test:mutate": "stryker run",
|
|
|
|
|
"test:mutate:dry": "stryker run --dryRunOnly"
|
2026-03-15 19:44:02 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-07-31 15:41:57 +02:00
|
|
|
"@eslint/js": "^10.0.1",
|
2026-03-16 16:43:46 +01:00
|
|
|
"@playwright/test": "^1",
|
2026-08-22 06:48:58 +02:00
|
|
|
"@stryker-mutator/api": "^10.0.0",
|
|
|
|
|
"@stryker-mutator/core": "^10.0.0",
|
|
|
|
|
"@stryker-mutator/typescript-checker": "^10.0.0",
|
|
|
|
|
"@stryker-mutator/vitest-runner": "^10.0.0",
|
2026-03-15 19:44:02 +01:00
|
|
|
"@tauri-apps/cli": "^2",
|
2026-08-22 06:48:58 +02:00
|
|
|
"@types/node": "^24.13.3",
|
|
|
|
|
"@vitest/browser-playwright": "^4.1.11",
|
|
|
|
|
"@vitest/coverage-v8": "^4.1.11",
|
2026-08-28 07:36:59 +02:00
|
|
|
"eslint": "^10.9.1",
|
2026-08-01 22:06:14 +02:00
|
|
|
"fast-check": "^4.9.0",
|
2026-08-22 06:48:58 +02:00
|
|
|
"jsdom": "^30.0.1",
|
2026-08-18 20:50:59 +02:00
|
|
|
"knip": "^6.32.2",
|
2026-08-28 07:36:59 +02:00
|
|
|
"oxlint": "^1.80.0",
|
2026-08-22 06:48:58 +02:00
|
|
|
"typescript": "^6.0.3",
|
2026-08-28 07:36:59 +02:00
|
|
|
"typescript-eslint": "^8.68.0",
|
2026-08-22 06:48:58 +02:00
|
|
|
"vite": "^8.2.2",
|
|
|
|
|
"vitest": "^4.1.11"
|
2026-03-15 19:44:02 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-03-18 23:02:06 +01:00
|
|
|
"@jitsi/rnnoise-wasm": "^0.2.1",
|
2026-03-15 19:44:02 +01:00
|
|
|
"@tauri-apps/api": "^2.10.1",
|
2026-07-24 10:44:06 +02:00
|
|
|
"@tauri-apps/plugin-autostart": "^2",
|
|
|
|
|
"@tauri-apps/plugin-deep-link": "^2",
|
2026-07-28 14:46:35 +02:00
|
|
|
"@tauri-apps/plugin-dialog": "^2.7.2",
|
2026-03-18 17:10:16 +01:00
|
|
|
"@tauri-apps/plugin-fs": "^2.4.5",
|
2026-03-15 19:44:02 +01:00
|
|
|
"@tauri-apps/plugin-http": "^2.5.7",
|
|
|
|
|
"@tauri-apps/plugin-notification": "^2",
|
2026-03-18 14:13:52 +01:00
|
|
|
"@tauri-apps/plugin-opener": "^2.5.3",
|
2026-03-18 17:47:59 +01:00
|
|
|
"@tauri-apps/plugin-process": "^2.3.1",
|
2026-08-22 06:48:58 +02:00
|
|
|
"livekit-client": "^2.22.0"
|
2026-07-30 18:41:22 +02:00
|
|
|
},
|
|
|
|
|
"overrides": {
|
2026-07-31 15:41:57 +02:00
|
|
|
"qs": "^6.15.3",
|
|
|
|
|
"test-exclude": "^8.0.0"
|
2026-03-15 19:44:02 +01:00
|
|
|
}
|
|
|
|
|
}
|