mirror of
https://github.com/fengshuzi/keyword-notes-editor.git
synced 2026-07-22 07:24:26 +00:00
Replace direct obsidian moment calls with typed toMoment helper Remove module augmentation that Scorecard may not pick up Version 1.0.18
45 lines
1.5 KiB
JSON
45 lines
1.5 KiB
JSON
{
|
|
"name": "keyword-notes-editor",
|
|
"version": "1.0.18",
|
|
"description": "View and edit multiple notes grouped by keyword tags.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"lint": "eslint \"**/*.{ts,tsx}\"",
|
|
"dev": "npm run lint && vite build --watch --mode development",
|
|
"build": "npm run lint && npx svelte-check && vite build --mode production && cp manifest.json dist/ ",
|
|
"build:deploy": "npm run build && npm run deploy",
|
|
"deploy": "node deploy.mjs",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"release": "node release.mjs"
|
|
},
|
|
"keywords": [],
|
|
"author": "lizhifeng",
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-replace": "^5.0.5",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@sveltejs/vite-plugin-svelte": "^3.1.0",
|
|
"@tsconfig/svelte": "^5.0.4",
|
|
"@types/node": "^20.12.7",
|
|
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
"@typescript-eslint/parser": "^8.58.2",
|
|
"esbuild": "0.14.47",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-svelte": "^2.37.0",
|
|
"obsidian": "^1.8.7",
|
|
"svelte": "^4.2.15",
|
|
"svelte-check": "3.7.1",
|
|
"svelte-eslint-parser": "^0.35.0",
|
|
"svelte-inview": "^4.0.2",
|
|
"svelte-preprocess": "^5.1.4",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^5.2.10",
|
|
"typescript-eslint": "^8.58.2"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/state": "^6.5.2",
|
|
"@codemirror/view": "^6.36.3",
|
|
"monkey-around": "^2.3.0"
|
|
}
|
|
}
|