forked from mProjectsCode/obsidian-meta-bind-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
42
43
{
"name": "obsidian-meta-bind-plugin",
"version": "0.3.3",
"description": "This plugin can create input fields inside your notes and bind them to metadata fields.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.dev.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"format": "prettier --write .",
"lint": "eslint --max-warnings=0 src/**"
},
"keywords": [],
"author": "Moritz Jung",
"license": "GPL-3.0",
"devDependencies": {
"@tsconfig/svelte": "^3.0.0",
"@types/jest": "^28.1.6",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.14.47",
"esbuild-plugin-copy-watch": "^0.0.7",
"esbuild-svelte": "^0.7.1",
"eslint-plugin-only-warn": "^1.0.3",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"obsidian": "latest",
"obsidian-dataview": "latest",
"prettier": "2.7.1",
"svelte": "^3.53.1",
"svelte-preprocess": "^4.10.7",
"ts-jest": "^28.0.5",
"tslib": "2.4.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@opd-libs/opd-metadata-lib": "0.0.4",
"@opd-libs/opd-utils-lib": "0.0.2"
}
}