generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 968 Bytes
/
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
{
"name": "obsidian-better-properties",
"version": "0.0.1",
"description": "Upgrades Obsidian properties with new types, features, and more!",
"main": "main.js",
"scripts": {
"dev": "vite build --watch --mode=development",
"build": "vite build",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"release": "git tag -a %npm_config_tag% -m '%npm_config_tag%' && git push origin %npm_config_tag%"
},
"keywords": [],
"author": "Unxok",
"license": "MIT",
"devDependencies": {
"@codemirror/language": "^6.10.3",
"@types/luxon": "^3.4.2",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"luxon": "^3.5.0",
"obsidian": "latest",
"obsidian-typings": "^2.7.0",
"tslib": "^2.7.0",
"typescript": "4.7.4",
"vite": "^5.4.8"
},
"dependencies": {
"monkey-around": "^3.0.0",
"zod": "^3.23.8"
}
}