mirror of
https://github.com/semanticdata/obsidian-pomodoro.git
synced 2026-07-22 12:00:26 +00:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"type": "module",
|
|
"name": "pomobar",
|
|
"version": "1.6.1",
|
|
"description": "A simple Pomodoro timer that lives in your status bar. Left click to start/stop, right click to reset when paused.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"pomodoro",
|
|
"pomodoro-timer",
|
|
"obsidian=pomodoro",
|
|
"status-bar",
|
|
"timer"
|
|
],
|
|
"author": "Miguel Pimentel",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@jest/globals": "^30.2.0",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.10.4",
|
|
"builtin-modules": "5.0.0",
|
|
"esbuild": "^0.25.12",
|
|
"esbuild-plugin-svg": "^0.1.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-plugin-jest": "^29.11.0",
|
|
"globals": "^16.5.0",
|
|
"jest": "^30.2.0",
|
|
"obsidian": "latest",
|
|
"ts-jest": "^29.4.6",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.50.1"
|
|
}
|
|
}
|