forked from Aidurber/obsidian-plugin-dynamic-toc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 KB
/
package.json
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
35
36
37
38
39
40
41
{
"name": "obsidian-plugin-dynamic-toc",
"version": "0.0.37",
"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": "obsidian-plugin dev -e esbuild.config.json -S src/styles.css src/main.ts ",
"type-check": "tsc --noEmit",
"build": "obsidian-plugin build -e esbuild.config.json -S src/styles.css src/main.ts ",
"release": "release-it",
"release:dry": "release-it --dry-run",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@codemirror/language": "^6.10.1",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.1",
"@lezer/common": "^1.2.1",
"@release-it/conventional-changelog": "^8.0.1",
"@types/jest": "^29.5.11",
"builtin-modules": "^3.3.0",
"esbuild": "^0.20.0",
"jest": "^29.7.0",
"obsidian": "latest",
"obsidian-plugin-cli": "^0.9.0",
"release-it": "^17.0.3",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"overrides": {
"obsidian-plugin-cli": {
"esbuild": "$esbuild"
}
},
"dependencies": {
"rambda": "^9.0.1"
}
}