glasp-co_obsidian-glasp-plugin/package.json
Kazuki c57df15140 chore: prepare v0.2.0 — Node 22, dependency security, gitignore
- Upgrade Node to 22.22.2 (.node-version, CI workflow, package engines, @types/node)
- Patch handlebars to 4.7.9 to resolve the critical advisory
- Remove the moment dependency in favor of native Date in normalize-highlight
- Harden .gitignore for the public repo (.DS_Store, logs, coverage, .env)
- Bump version to 0.2.0

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-02 15:52:28 -07:00

40 lines
961 B
JSON

{
"name": "glasp-obsidian-plugin",
"version": "0.2.0",
"description": "Obsidian plugin to import your Glasp web and Kindle Highlights into your vault.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "vitest run",
"tsc": "tsc -noEmit",
"format:fix": "biome format --write src",
"format:check": "biome format src",
"lint:fix": "biome check --write --unsafe src",
"lint:check": "biome check src",
"prepare": "lefthook install"
},
"keywords": [
"obsidian",
"glasp"
],
"author": "Glasp",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.19.19",
"esbuild": "0.24.2",
"lefthook": "1.10.1",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"dependencies": {
"handlebars": "4.7.9",
"obsidian": "1.7.2",
"tslib": "2.8.1"
},
"engines": {
"node": "22.22.2",
"npm": "10.9.7"
}
}