generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "obsidian-klog",
"version": "0.2.0",
"description": "Obsidian support for the Klog file format.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "pnpm compile && rm -rf dist && mkdir dist && cp {main.js,manifest.json} ./dist/",
"compile": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"bump-version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Ovyerus <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"builtin-modules": "3.3.0",
"esbuild": "0.20.2",
"esbuild-svelte": "^0.8.0",
"klog.js": "^1.0.3",
"obsidian": "1.5.7-1",
"obsidian-typings": "^1.1.6",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"svelte": "^4.2.15",
"svelte-preprocess": "^5.1.4",
"tslib": "2.6.2",
"typescript": "5.4.5"
},
"dependencies": {
"uid": "^2.0.2"
}
}