mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-24 03:06:16 +00:00
42 lines
979 B
JSON
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"
|
|
}
|
|
}
|