Risuai 0.6.3 first commit

This commit is contained in:
kwaroran
2023-05-07 12:41:45 +09:00
parent 50e5e1d917
commit 2c5c7d2694
98 changed files with 15070 additions and 0 deletions

66
package.json Normal file
View File

@@ -0,0 +1,66 @@
{
"name": "risuai",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"tauri": "tauri",
"buildsite": "vite build --outDir dist",
"updatePlugin": "tsc public/pluginApi.ts"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.4",
"@msgpack/msgpack": "3.0.0-beta2",
"@tauri-apps/api": "1.2.0",
"buffer": "^6.0.3",
"dompurify": "^3.0.1",
"exifr": "^7.1.3",
"gpt-3-encoder": "^1.1.4",
"gpt3-tokenizer": "^1.1.5",
"isomorphic-dompurify": "^1.2.0",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"lucide-svelte": "^0.130.0",
"pako": "^2.1.0",
"png-chunk-text": "^1.0.0",
"png-chunks-encode": "^1.0.0",
"png-chunks-extract": "^1.0.0",
"pngjs": "^7.0.0",
"rollup": "^3.21.3",
"showdown": "^2.1.0",
"sweetalert2": "^11.7.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.0.0",
"@tailwindcss/typography": "^0.5.9",
"@tauri-apps/cli": "1.2.3",
"@tsconfig/svelte": "^3.0.0",
"@types/dompurify": "^3.0.1",
"@types/lodash": "^4.14.194",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^18.7.10",
"@types/pako": "^2.0.0",
"@types/pngjs": "^6.0.1",
"@types/showdown": "^2.0.0",
"@types/uuid": "^9.0.1",
"@types/wicg-file-system-access": "^2020.9.6",
"autoprefixer": "^10.4.14",
"internal-ip": "^7.0.0",
"postcss": "^8.4.23",
"svelte": "^3.54.0",
"svelte-check": "^3.0.0",
"svelte-preprocess": "^5.0.0",
"tailwindcss": "^3.3.1",
"tslib": "^2.4.1",
"typescript": "^4.9.5",
"vite": "^4.2.1",
"vite-plugin-top-level-await": "^1.3.0",
"vite-plugin-wasm": "^3.2.2"
}
}