open-webui/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

2023-10-09 06:38:42 +08:00
{
2024-02-20 03:47:37 +08:00
"name": "open-webui",
2024-02-28 12:07:23 +08:00
"version": "0.1.106",
2023-10-09 06:38:42 +08:00
"private": true,
"scripts": {
2023-10-09 09:32:54 +08:00
"dev": "vite dev --host",
2023-10-09 06:38:42 +08:00
"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",
2024-01-05 05:44:24 +08:00
"lint": "npm run lint:frontend ; npm run lint:types ; npm run lint:backend",
"lint:frontend": "eslint . --fix",
"lint:types": "npm run check",
2024-01-04 06:33:49 +08:00
"lint:backend": "pylint backend/",
2024-01-05 05:44:24 +08:00
"format": "prettier --plugin-search-dir --write '**/*.{js,ts,svelte,css,md,html,json}'",
2024-01-04 06:33:49 +08:00
"format:backend": "yapf --recursive backend -p -i"
2023-10-09 06:38:42 +08:00
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
2023-10-22 04:43:56 +08:00
"@sveltejs/adapter-static": "^2.0.3",
2024-01-05 12:13:50 +08:00
"@sveltejs/kit": "^1.30.0",
2023-10-24 16:52:19 +08:00
"@tailwindcss/typography": "^0.5.10",
2024-01-04 06:33:49 +08:00
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
2023-10-09 06:38:42 +08:00
"autoprefixer": "^10.4.16",
2024-01-04 06:33:49 +08:00
"eslint": "^8.56.0",
2023-10-09 06:38:42 +08:00
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.30.0",
"postcss": "^8.4.31",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
2024-02-22 22:20:48 +08:00
"svelte-confetti": "^1.3.2",
2023-10-09 06:38:42 +08:00
"tailwindcss": "^3.3.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.4.2"
},
"type": "module",
"dependencies": {
"@sveltejs/adapter-node": "^1.3.1",
2024-01-06 18:10:41 +08:00
"async": "^3.2.5",
2024-01-06 12:59:56 +08:00
"dayjs": "^1.11.10",
2023-10-19 13:57:55 +08:00
"file-saver": "^2.0.5",
"highlight.js": "^11.9.0",
"idb": "^7.1.1",
2023-11-06 05:25:23 +08:00
"js-sha256": "^0.10.1",
2023-10-29 06:16:04 +08:00
"katex": "^0.16.9",
2023-10-09 06:38:42 +08:00
"marked": "^9.1.0",
"svelte-french-toast": "^1.2.0",
2023-12-15 06:24:56 +08:00
"tippy.js": "^6.3.7",
"uuid": "^9.0.1"
2023-10-09 06:38:42 +08:00
}
2024-02-23 16:30:26 +08:00
}