super-productivity/packages/plugin-api/package.json
2025-06-29 06:36:02 +02:00

43 lines
1,021 B
JSON

{
"name": "@super-productivity/plugin-api",
"version": "1.0.0",
"description": "TypeScript definitions for Super Productivity plugin development",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --emitDeclarationOnly --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"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": [
"src/**/*.ts",
"README.md",
"LICENSE"
],
"devDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}