mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-12-23 10:11:57 +00:00
This commit does a few things related to theming. First of all, it removes the light theme (unimplemented currently). Second, it adds the Inter font, and changes the default font to Inter with a wide tracking.
89 lines
2.5 KiB
JSON
89 lines
2.5 KiB
JSON
{
|
|
"name": "raycast-linux",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"tauri": "tauri",
|
|
"format": "prettier --write .",
|
|
"lint": "prettier --check . && eslint .",
|
|
"test:unit": "vitest",
|
|
"test": "npm run test:unit -- --run"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@fontsource-variable/inter": "^5.2.6",
|
|
"@raycast-linux/protocol": "workspace:*",
|
|
"@tauri-apps/api": "^2",
|
|
"@tauri-apps/plugin-clipboard-manager": "~2.2.2",
|
|
"@tauri-apps/plugin-deep-link": "~2",
|
|
"@tauri-apps/plugin-dialog": "~2.3.0",
|
|
"@tauri-apps/plugin-fs": "~2.4.0",
|
|
"@tauri-apps/plugin-global-shortcut": "~2.2.1",
|
|
"@tauri-apps/plugin-http": "~2.4.4",
|
|
"@tauri-apps/plugin-opener": "~2",
|
|
"@tauri-apps/plugin-os": "~2.3.0",
|
|
"@tauri-apps/plugin-shell": "~2.2.1",
|
|
"embla-carousel-svelte": "^8.6.0",
|
|
"fuse.js": "^7.1.0",
|
|
"msgpackr": "^1.11.4",
|
|
"pako": "^2.1.0",
|
|
"svelte-marked": "^0.8.0",
|
|
"virtua": "^0.41.5",
|
|
"zod": "^3.25.63"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.2.5",
|
|
"@eslint/js": "^9.18.0",
|
|
"@internationalized/date": "^3.8.2",
|
|
"@lucide/svelte": "^0.515.0",
|
|
"@raycast/api": "^1.99.4",
|
|
"@sveltejs/adapter-static": "^3.0.6",
|
|
"@sveltejs/kit": "^2.9.0",
|
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
"@tailwindcss/typography": "^0.5.16",
|
|
"@tailwindcss/vite": "^4.0.0",
|
|
"@tauri-apps/cli": "^2",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/svelte": "^5.2.8",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/node": "^24.0.0",
|
|
"@types/pako": "^2.0.3",
|
|
"@vitest/browser": "^3.2.3",
|
|
"bits-ui": "^2.8.10",
|
|
"clsx": "^2.1.1",
|
|
"eslint": "^9.18.0",
|
|
"eslint-config-prettier": "^10.0.1",
|
|
"eslint-plugin-svelte": "^3.0.0",
|
|
"globals": "^16.0.0",
|
|
"jsdom": "^26.1.0",
|
|
"mode-watcher": "^1.0.8",
|
|
"playwright": "^1.53.0",
|
|
"prettier": "^3.4.2",
|
|
"prettier-plugin-svelte": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
"svelte": "^5.0.0",
|
|
"svelte-check": "^4.0.0",
|
|
"tailwind-merge": "^3.3.0",
|
|
"tailwind-variants": "^1.0.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"tw-animate-css": "^1.3.4",
|
|
"typescript": "~5.6.2",
|
|
"typescript-eslint": "^8.20.0",
|
|
"vite": "^6.0.3",
|
|
"vite-plugin-node-polyfills": "^0.23.0",
|
|
"vitest": "^3.2.3",
|
|
"vitest-browser-svelte": "^0.1.0"
|
|
},
|
|
"packageManager": "pnpm@10.11.1",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild"
|
|
]
|
|
}
|
|
}
|