generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
72 lines (72 loc) · 2.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "obsidian-meta-bind-plugin",
"version": "1.3.1",
"description": "Make your notes interactive with inline input fields, metadata displays, and buttons.",
"main": "main.js",
"scripts": {
"dev": "bun run automation/build/esbuild.dev.config.ts",
"build": "bun run tsc && bun run automation/build/esbuild.config.ts",
"dev-publish": "bun run automation/build/esbuild.publish.dev.config.ts",
"build-publish": "bun run tsc && node automation/build/esbuild.publish.config.ts",
"tsc": "tsc -noEmit -skipLibCheck",
"test": "LOG_TESTS=false bun test --conditions=browser",
"test:log": "LOG_TESTS=true bun test --conditions=browser",
"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\"",
"types": "tsc -p \"./tsconfig.types.json\"",
"check": "bun run format:check && bun run tsc && bun run svelte-check && bun run lint && bun run test",
"check:fix": "bun run format && bun run tsc && bun run svelte-check && bun run lint:fix && bun run test",
"pack:i": "bun run automation/installScript.ts",
"pack:i:clean": "bun run automation/installScriptClean.ts",
"release": "bun run automation/release.ts",
"serve-publish": "bun --watch automation/publishServer.ts",
"stats": "bun run automation/stats.ts"
},
"keywords": [],
"author": "Moritz Jung",
"license": "GPL-3.0",
"devDependencies": {
"@elysiajs/cors": "^1.2.0",
"@happy-dom/global-registrator": "^14.12.3",
"@tsconfig/svelte": "^5.0.4",
"@types/bun": "^1.1.16",
"builtin-modules": "^4.0.0",
"elysia": "^1.2.10",
"esbuild": "^0.24.2",
"esbuild-plugin-copy-watch": "^2.3.1",
"esbuild-svelte": "^0.8.2",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-isaacscript": "^4.0.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-svelte": "^2.46.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"string-argv": "^0.3.2",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"yaml": "^2.7.0"
},
"dependencies": {
"@codemirror/legacy-modes": "^6.4.2",
"@lemons_dev/parsinom": "^0.0.12",
"itertools-ts": "^1.29.0",
"mathjs": "^14.0.1",
"moment": "^2.30.1",
"svelte": "^5.17.5",
"zod": "^3.24.1",
"zod-validation-error": "^3.4.0"
},
"private": true,
"trustedDependencies": [
"esbuild",
"svelte-preprocess"
]
}