rust powered markdown parsing working

This commit is contained in:
Iaphetes 2024-11-13 08:06:51 +01:00
parent 49deafd8a2
commit 05519bad5b
10 changed files with 3099 additions and 4 deletions

33
package.json Normal file
View file

@ -0,0 +1,33 @@
{
"name": "apographe",
"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"
},
"license": "MIT",
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-fs": "^2.0.2",
"@tauri-apps/plugin-shell": "^2",
"d3": "^7.9.0",
"marked": "^15.0.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.5",
"@sveltejs/kit": "^2.7.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tauri-apps/cli": "^2",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tslib": "^2.8.0",
"typescript": "^5.5.0",
"vite": "^5.4.10"
}
}