-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.66 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
58
59
60
61
62
63
64
65
66
{
"name": "obsidian-meta-bind-plugin",
"version": "1.4.8",
"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/** --no-warn-ignored",
"lint:fix": "eslint --max-warnings=0 --fix packages/** --no-warn-ignored",
"svelte-check": "svelte-check --compiler-warnings \"unused-export-let: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",
"pack:i": "bun install && cd packages/core && bun install && cd ../obsidian && bun install && cd ../publish && bun install",
"pack:u": "bun update && cd packages/core && bun update && cd ../obsidian && bun update && cd ../publish && bun update",
"pack:o": "bun outdated && cd packages/core && bun outdated && cd ../obsidian && bun outdated && cd ../publish && bun outdated",
"release": "lemons-automation release"
},
"keywords": [],
"author": "Moritz Jung",
"license": "GPL-3.0",
"devDependencies": {
"@elysiajs/cors": "^1.4.1",
"@happy-dom/global-registrator": "^20.9.0",
"@lemons_dev/lemons-obsidian-plugin-automation": "^0.1.2",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tsconfig/svelte": "^5.0.8",
"@types/bun": "^1.3.13",
"eslint": "^9.39.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-isaacscript": "^4.0.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-obsidianmd": "^0.2.4",
"eslint-plugin-only-warn": "^1.2.1",
"eslint-plugin-svelte": "^3.17.1",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.1",
"string-argv": "^0.3.2",
"svelte-check": "^4.4.6",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-static-copy": "^4.1.0",
"yaml": "^2.8.3"
},
"dependencies": {
"@codemirror/legacy-modes": "^6.5.2",
"@lemons_dev/parsinom": "^0.2.1",
"itertools-ts": "^2.5.0",
"mathjs": "^15.2.0",
"moment": "^2.30.1",
"svelte": "^5.55.4",
"zod": "^4.3.6"
},
"private": true,
"trustedDependencies": [
"svelte-preprocess"
]
}