sirwanafifi_inkplane/package.json
2026-07-17 15:24:00 +01:00

44 lines
1.2 KiB
JSON

{
"name": "inkplane",
"version": "0.2.5",
"description": "A Pencil-first infinite drawing canvas with embeds for Obsidian.",
"private": true,
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"test": "vitest run",
"test:watch": "vitest",
"validate:release": "node scripts/check-release.mjs",
"check": "npm run test && npm run build && npm run validate:release",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"apple-pencil",
"canvas",
"handwriting",
"infinite-canvas",
"ink"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SirwanAfifi/inkplane.git"
},
"bugs": {
"url": "https://github.com/SirwanAfifi/inkplane/issues"
},
"homepage": "https://github.com/SirwanAfifi/inkplane#readme",
"dependencies": {
"perfect-freehand": "^1.2.3"
},
"devDependencies": {
"@types/node": "^24.0.0",
"esbuild": "^0.28.1",
"obsidian": "^1.13.1",
"tslib": "^2.8.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}