40 lines
908 B
JSON
40 lines
908 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|