forked from Aidurber/obsidian-plugin-dynamic-toc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "obsidian-dynamic-toc",
"version": "0.0.43",
"description": "An Obsidian plugin to generate Tables of Contents that stay up to date with your document outline.",
"main": "main.js",
"license": "MIT",
"scripts": {
"dev": "node scripts/dev.js",
"dev:default": "node scripts/dev-default.js",
"preview": "node scripts/copy-to-vault.js",
"type-check": "tsc --noEmit",
"build": "vite build && cp manifest.json dist/",
"release": "release-it",
"release:dry": "release-it --dry-run",
"test": "vitest run",
"test:watch": "vitest",
"validate-workflow": "./bin/act push --eventpath push_event.json -P ubuntu-latest=catthehacker/ubuntu:act-latest"
},
"devDependencies": {
"@codemirror/language": "^6.11.3",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.4",
"@lezer/common": "^1.2.3",
"@release-it/conventional-changelog": "^10.0.1",
"builtin-modules": "^5.0.0",
"esbuild": "^0.25.10",
"obsidian": "latest",
"release-it": "^19.0.5",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"vitest": "^2.1.8"
}
}