danderson1988_visual-notes/package.json
Daniel Anderson aa54829207 Bump to 1.0.22: add "Creative Studio Hub" starter template
Same moodboard look as Project Ideas, but a plugin tour across three
workflows: a short-film zone (production kanban with tags/due dates/
subtasks/WIP limit/thumbnail, graded-still image with a pinned comment,
script PDF file card, location-scout map card), an animation corner
(reference column, colour-script swatch row wired to it with an arrow,
shot-list checklist with section headers and subtasks, storyboard/asset
tiles, keywords sticky circled in pen ink), and a study desk group
(typed course-tracker table, month calendar with shoot/revision notes, a
playable YouTube bookmark, labelled inbox stickies, highlighter ink, and
a study-tip callout). A dashed "schedule the shoot" arrow ties the
kanban to the calendar.

Also restores manifest.json to the release flow: Obsidian's updater had
overwritten the working copy with the published 1.0.19 release manifest
(this vault plugin folder is the git repo), regressing minAppVersion to
1.7.2 — re-set to 1.13.0, which the settings code requires.
2026-07-17 14:47:04 +10:00

42 lines
1.3 KiB
JSON

{
"name": "visual-notes",
"version": "1.0.22",
"description": "Visual Notes — a visual workspace for Obsidian",
"main": "main.js",
"scripts": {
"generate-templates": "node scripts/generate-starter-templates.mjs",
"generate-benchmarks": "node scripts/generate-benchmark-boards.mjs",
"predev": "npm run generate-templates",
"dev": "node esbuild.config.mjs",
"pretypecheck": "npm run generate-templates",
"typecheck": "tsc --noEmit -p .",
"pretest": "npm run generate-templates",
"test": "vitest run",
"build": "npm run typecheck && node esbuild.config.mjs production"
},
"keywords": [],
"author": "Daniel Anderson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danderson1988/visual-notes.git"
},
"bugs": {
"url": "https://github.com/danderson1988/visual-notes/issues"
},
"homepage": "https://github.com/danderson1988/visual-notes#readme",
"devDependencies": {
"@types/node": "^22.0.0",
"@types/sortablejs": "^1.15.9",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.21.5",
"jsdom": "^29.1.1",
"obsidian": "1.13.0",
"tslib": "^2.6.3",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"dependencies": {
"sortablejs": "^1.15.7"
}
}