migrated the frontend file generation, changed folder structure

This commit is contained in:
2026-05-06 20:06:47 +03:00
parent 12a64e9f2f
commit 76fe1c4294
23 changed files with 908 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
{
"name": "task-plugins",
"version": "1.0.0",
"type": "module",
"description": "ES module task plugin",
"module": "./dist/plugin.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/plugin.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"dev": "vite build --watch",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@vitejs/plugin-react": "^6.0.1",
"esbuild": "^0.28.0",
"typescript": "^5.0.0",
"vite": "^8.0.10",
"vite-plugin-singlefile": "^2.3.3"
},
"files": [
"dist"
],
"sideEffects": false,
"dependencies": {
"@mantine/core": "^9.1.1",
"@mantine/notifications": "^9.1.1",
"@tabler/icons-react": "^3.41.1",
"miew-react": "^0.11.0",
"react-resizable-panels": "^4.10.0"
}
}