mirror of
https://github.com/plasmabit/timethings.git
synced 2026-07-22 09:00:29 +00:00
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "timethings",
|
|
"version": "2.0.0",
|
|
"description": "Show clock in the corner. Track total editing time of a note and the last time it was modified.",
|
|
"keywords": [
|
|
"clock",
|
|
"frontmatter",
|
|
"metadata",
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"time-tracking"
|
|
],
|
|
"license": "MIT",
|
|
"author": "Nick Winters",
|
|
"packageManager": "pnpm@10.16.0",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc && node esbuild.config.mjs production",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc",
|
|
"lint": "oxlint",
|
|
"format": "oxfmt src/",
|
|
"format:check": "oxfmt --check src/",
|
|
"check": "pnpm typecheck && pnpm lint && pnpm format:check",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"dependencies": {
|
|
"temporal-polyfill": "^1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@codemirror/state": "^6.5.0",
|
|
"@types/node": "^26.1.0",
|
|
"builtin-modules": "^5.3.0",
|
|
"esbuild": "^0.28.1",
|
|
"obsidian": "^1.13.1",
|
|
"oxfmt": "^0.57.0",
|
|
"oxlint": "^1.72.0",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.1.9"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"esbuild"
|
|
]
|
|
}
|
|
}
|