CoolFace
Datasetpublic

echodict/llama.cpp

version https://git-lfs.github.com/spec/v1 oid sha256:cfc44b7ba25614df70e6b65e3341cae0310163bd32fd31a6b928a542df433faf size 30786

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes773downloads
package.json97 linesDownload Raw Back to webui
1{2	"name": "llama-server-webui",3	"private": true,4	"version": "1.0.0",5	"type": "module",6	"scripts": {7		"dev": "bash scripts/dev.sh",8		"build": "vite build && ./scripts/post-build.sh",9		"preview": "vite preview",10		"prepare": "svelte-kit sync || echo ''",11		"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",12		"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",13		"reset": "rm -rf .svelte-kit node_modules",14		"format": "prettier --write .",15		"lint": "prettier --check . && eslint .",16		"test": "npm run test:ui -- --run && npm run test:client -- --run && npm run test:unit -- --run && npm run test:e2e",17		"test:e2e": "playwright test",18		"test:client": "vitest --project=client",19		"test:unit": "vitest --project=unit",20		"test:ui": "vitest --project=ui",21		"storybook": "storybook dev -p 6006",22		"build-storybook": "storybook build",23		"cleanup": "rm -rf .svelte-kit build node_modules test-results"24	},25	"devDependencies": {26		"@chromatic-com/storybook": "^5.0.0",27		"@eslint/compat": "^1.2.5",28		"@eslint/js": "^9.18.0",29		"@internationalized/date": "^3.10.1",30		"@lucide/svelte": "^0.515.0",31		"@playwright/test": "^1.49.1",32		"@storybook/addon-a11y": "^10.2.4",33		"@storybook/addon-docs": "^10.2.4",34		"@storybook/addon-svelte-csf": "^5.0.10",35		"@storybook/addon-vitest": "^10.2.4",36		"@storybook/sveltekit": "^10.2.4",37		"@sveltejs/adapter-static": "^3.0.10",38		"@sveltejs/kit": "^2.48.4",39		"@sveltejs/vite-plugin-svelte": "^6.2.1",40		"@tailwindcss/forms": "^0.5.9",41		"@tailwindcss/typography": "^0.5.15",42		"@tailwindcss/vite": "^4.0.0",43		"@types/node": "^24",44		"@vitest/browser": "^3.2.3",45		"@vitest/coverage-v8": "^3.2.3",46		"bits-ui": "^2.14.4",47		"clsx": "^2.1.1",48		"dexie": "^4.0.11",49		"eslint": "^9.18.0",50		"eslint-config-prettier": "^10.0.1",51		"eslint-plugin-storybook": "^10.2.4",52		"eslint-plugin-svelte": "^3.0.0",53		"globals": "^16.0.0",54		"http-server": "^14.1.1",55		"mdast": "^3.0.0",56		"mdsvex": "^0.12.3",57		"playwright": "^1.56.1",58		"prettier": "^3.4.2",59		"prettier-plugin-svelte": "^3.3.3",60		"prettier-plugin-tailwindcss": "^0.6.11",61		"rehype-katex": "^7.0.1",62		"remark-math": "^6.0.0",63		"sass": "^1.93.3",64		"storybook": "^10.2.4",65		"svelte": "^5.38.2",66		"svelte-check": "^4.0.0",67		"tailwind-merge": "^3.3.1",68		"tailwind-variants": "^3.2.2",69		"tailwindcss": "^4.0.0",70		"tw-animate-css": "^1.3.5",71		"typescript": "^5.0.0",72		"typescript-eslint": "^8.20.0",73		"unified": "^11.0.5",74		"uuid": "^13.0.0",75		"vite": "^7.2.2",76		"vite-plugin-devtools-json": "^0.2.0",77		"vitest": "^3.2.3",78		"vitest-browser-svelte": "^0.1.0"79	},80	"dependencies": {81		"@modelcontextprotocol/sdk": "^1.25.1",82		"highlight.js": "^11.11.1",83		"mode-watcher": "^1.1.0",84		"pdfjs-dist": "^5.4.54",85		"rehype-highlight": "^7.0.2",86		"rehype-stringify": "^10.0.1",87		"remark": "^15.0.1",88		"remark-breaks": "^4.0.0",89		"remark-gfm": "^4.0.1",90		"remark-html": "^16.0.1",91		"remark-rehype": "^11.1.2",92		"svelte-sonner": "^1.0.5",93		"unist-util-visit": "^5.0.0",94		"zod": "^4.2.1"95	}96}97