mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
Batches the four open Dependabot npm PRs into one change so package-lock.json is rewritten once instead of four times: eslint 10.8.0 -> 10.8.1 oxlint 1.76.0 -> 1.77.0 knip 6.31.0 -> 6.32.0 typescript-eslint 8.65.0 -> 8.66.0 All four are devDependencies; no runtime dependency moves. Supersedes #1341, #1345, #1349, and #1352. Verified per the ci-check skill: 4822 unit tests across 171 files, tsc --noEmit, npm run lint, and prettier --check all pass. The no-underscore-dangle warnings oxlint prints on livekitSession.ts are pre-existing -- oxlint 1.76.0 emits the identical set -- and are warnings, not errors. Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
83 lines
2.7 KiB
JSON
83 lines
2.7 KiB
JSON
{
|
|
"name": "owncord-client",
|
|
"private": true,
|
|
"version": "1.2.0-alpha.2",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -p tsconfig.build.json && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run tests/unit",
|
|
"test:integration": "vitest run tests/integration",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:prod": "npm run build && playwright test --config playwright.config.prod.ts",
|
|
"test:e2e:native": "playwright test --config playwright.config.native.ts",
|
|
"test:e2e:admin": "playwright test --config playwright.config.admin.ts",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:browser": "vitest run --config vitest.config.browser.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"typecheck:build": "tsc -p tsconfig.build.json --noEmit",
|
|
"typecheck:e2e": "tsc -p tsconfig.e2e.json --noEmit",
|
|
"lint": "oxlint src/ && eslint src/",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"lint:ox": "oxlint src/",
|
|
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
"knip": "knip",
|
|
"test:mutate": "stryker run",
|
|
"test:mutate:dry": "stryker run --dryRunOnly"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@playwright/test": "^1",
|
|
"@stryker-mutator/api": "^9.6.1",
|
|
"@stryker-mutator/core": "^9.6.1",
|
|
"@stryker-mutator/typescript-checker": "^9.6.1",
|
|
"@stryker-mutator/vitest-runner": "^9.6.1",
|
|
"@tauri-apps/cli": "^2",
|
|
"@types/node": "^20.19.43",
|
|
"@vitest/browser": "^3.2.4",
|
|
"@vitest/coverage-v8": "^3",
|
|
"eslint": "^10.8.1",
|
|
"fast-check": "^4.9.0",
|
|
"jsdom": "^29.1.1",
|
|
"knip": "^6.32.0",
|
|
"oxlint": "^1.77.0",
|
|
"prettier": "^3.9.6",
|
|
"typescript": "^5.7",
|
|
"typescript-eslint": "^8.66.0",
|
|
"vite": "^6",
|
|
"vitest": "^3"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": false,
|
|
"semi": true,
|
|
"trailingComma": "all",
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"arrowParens": "always",
|
|
"endOfLine": "lf"
|
|
},
|
|
"dependencies": {
|
|
"@jitsi/rnnoise-wasm": "^0.2.1",
|
|
"@tauri-apps/api": "^2.10.1",
|
|
"@tauri-apps/plugin-autostart": "^2",
|
|
"@tauri-apps/plugin-deep-link": "^2",
|
|
"@tauri-apps/plugin-dialog": "^2.7.2",
|
|
"@tauri-apps/plugin-fs": "^2.4.5",
|
|
"@tauri-apps/plugin-http": "^2.5.7",
|
|
"@tauri-apps/plugin-notification": "^2",
|
|
"@tauri-apps/plugin-opener": "^2.5.3",
|
|
"@tauri-apps/plugin-process": "^2.3.1",
|
|
"livekit-client": "^2.21.0"
|
|
},
|
|
"overrides": {
|
|
"qs": "^6.15.3",
|
|
"test-exclude": "^8.0.0"
|
|
}
|
|
}
|