mirror of
https://github.com/gavvvr/obsidian-timecodes-plugin.git
synced 2026-07-22 12:00:24 +00:00
Was broken by dcfd5717f7.
@types/node v22.10.8 is the most recent known version which doesn't cause problems
36 lines
969 B
JSON
36 lines
969 B
JSON
{
|
|
"name": "obsidian-timecodes-plugin",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "node scripts/dev.js",
|
|
"build": "tsc -noEmit -skipLibCheck && node scripts/esbuild.build.js production",
|
|
"test:eslint": "eslint --cache --cache-location out/.eslintcache",
|
|
"test:unit": "vitest --coverage"
|
|
},
|
|
"keywords": [
|
|
"obsidian.md",
|
|
"youtube",
|
|
"timecodes"
|
|
],
|
|
"author": "Kirill Gavrilov",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "9.19.0",
|
|
"@stylistic/eslint-plugin": "3.0.1",
|
|
"@types/node": "22.10.8",
|
|
"@vitest/coverage-v8": "3.0.4",
|
|
"enquirer": "2.4.1",
|
|
"esbuild": "0.24.2",
|
|
"eslint": "9.19.0",
|
|
"eslint-plugin-perfectionist": "4.7.0",
|
|
"eslint-plugin-wdio": "9.6.0",
|
|
"globals": "15.14.0",
|
|
"obsidian": "1.7.2",
|
|
"obsidian-utils": "0.10.2",
|
|
"typescript": "5.7.3",
|
|
"typescript-eslint": "8.22.0",
|
|
"vitest": "3.0.4"
|
|
},
|
|
"packageManager": "pnpm@9.15.4"
|
|
}
|