-
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.15 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.15 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "obsidian-meta-bind-plugin",
"version": "1.5.0",
"description": "Make your notes interactive with inline input fields, metadata displays, and buttons.",
"main": "main.js",
"scripts": {
"dev": "vite build --mode=development --watch",
"build": "vite build --mode=production",
"typecheck": "tsc -noEmit -skipLibCheck",
"test": "LOG_TESTS=false bun test --conditions=browser --conditions=development",
"test:log": "LOG_TESTS=true bun test --conditions=browser --conditions=development",
"format": "prettier --write --plugin prettier-plugin-svelte .",
"format:check": "prettier --check --plugin prettier-plugin-svelte .",
"lint": "eslint --max-warnings=0 packages/*/src/** --no-warn-ignored",
"lint:fix": "eslint --max-warnings=0 --fix packages/*/src/** --no-warn-ignored",
"svelte-check": "svelte-check --compiler-warnings \"state_referenced_locally:ignore\"",
"check": "bun run format:check && bun run typecheck && bun run svelte-check && bun run lint && bun run test",
"check:fix": "bun run format && bun run typecheck && bun run svelte-check && bun run lint:fix && bun run test",
"clean": "rm -rf dist node_modules packages/*/node_modules bun.lock",
"release": "lemons-automation release"
},
"keywords": [],
"author": "Moritz Jung",
"license": "GPL-3.0",
"devDependencies": {
"@eslint/js": "^8.57.1",
"@happy-dom/global-registrator": "^20.10.2",
"@lemons_dev/lemons-obsidian-plugin-automation": "^0.1.3",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@types/bun": "^1.3.14",
"eslint": "^9.39.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-obsidianmd": "^0.3.0",
"eslint-plugin-only-warn": "^1.2.1",
"eslint-plugin-svelte": "^3.19.0",
"prettier": "^3.8.4",
"prettier-plugin-svelte": "^4.1.0",
"svelte-check": "^4.6.0",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "8.59.3",
"vite": "^8.0.16",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-static-copy": "^4.1.1",
"yaml": "^2.9.0"
},
"private": true,
"workspaces": [
"packages/core",
"packages/obsidian",
"packages/publish"
],
"trustedDependencies": [
"svelte-preprocess"
]
}