mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
43 lines
1,021 B
JSON
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"
|
|
}
|
|
}
|