-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"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"
}
}