super-productivity/packages/plugin-api/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

42 lines
979 B
JSON

{
"name": "@super-productivity/plugin-api",
"version": "1.0.0",
"description": "TypeScript definitions for Super Productivity plugin development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"super-productivity",
"plugin",
"typescript",
"types",
"productivity",
"task-management"
],
"author": "Johannes Millan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/johannesjo/super-productivity.git",
"directory": "packages/plugin-api"
},
"bugs": {
"url": "https://github.com/johannesjo/super-productivity/issues"
},
"homepage": "https://github.com/johannesjo/super-productivity#readme",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}