super-productivity/packages/plugin-dev/boilerplate-solid-js/package.json
Johannes Millan d4d81bf511 feat(plugin-api): create foundational plugin API package
- Add @super-productivity/plugin-api package with TypeScript definitions
- Define core plugin interfaces, types, and manifest structure
- Add plugin hooks system for event-driven architecture
- Create plugin API type definitions and constants
- Add documentation and development guidelines
2025-06-27 18:13:19 +02:00

27 lines
777 B
JSON

{
"name": "sp-plugin-boilerplate-solid",
"version": "1.0.0",
"description": "A boilerplate Super Productivity plugin using Solid.js and TypeScript",
"type": "module",
"scripts": {
"dev": "vite",
"dev:watch": "node scripts/watch-and-build.js",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"package": "npm run build && node scripts/build-plugin.js",
"clean": "rm -rf dist node_modules *.zip",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.15.33",
"solid-js": "^1.9.7",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-solid": "^2.11.7",
"archiver": "^7.0.1"
},
"dependencies": {
"@super-productivity/plugin-api": "file:../plugin-api"
}
}