generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.15 KB
/
package.json
File metadata and controls
63 lines (63 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
58
59
60
61
62
63
{
"name": "obsidian-js-engine-plugin",
"version": "0.3.3",
"description": "This plugin for obsidian allows you to use and run JavaScript from within your notes.",
"main": "main.js",
"scripts": {
"dev": "bun run automation/build/esbuild.dev.config.ts",
"build": "tsc -noEmit -skipLibCheck && bun run automation/build/esbuild.config.ts",
"tsc": "tsc -noEmit -skipLibCheck",
"test": "LOG_TESTS=false bun test",
"test:log": "LOG_TESTS=true bun test",
"format": "prettier --write --plugin prettier-plugin-svelte .",
"format:check": "prettier --check --plugin prettier-plugin-svelte .",
"lint": "eslint --max-warnings=0",
"lint:fix": "eslint --max-warnings=0 --fix jsEngine/**",
"svelte-check": "svelte-check",
"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",
"release": "bun run automation/release.ts",
"types": "tsc --project tsconfig.types.json"
},
"keywords": [],
"author": "Moritz Jung",
"license": "GPL-3.0",
"devDependencies": {
"@codemirror/autocomplete": "^6.19.1",
"@codemirror/language": "^6.11.3",
"@codemirror/lint": "^6.9.2",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.6",
"@eslint/js": "^9.39.1",
"@happy-dom/global-registrator": "^20.0.10",
"@tsconfig/svelte": "^5.0.5",
"@types/bun": "^1.3.2",
"builtin-modules": "^5.0.0",
"esbuild": "^0.25.12",
"esbuild-plugin-copy-watch": "^2.3.1",
"esbuild-svelte": "^0.9.3",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-only-warn": "^1.1.0",
"obsidian": "latest",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"string-argv": "^0.3.2",
"svelte": "^5.43.5",
"svelte-check": "^4.3.3",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"dependencies": {
"@codemirror/legacy-modes": "^6.5.2",
"@lemons_dev/parsinom": "^0.1.0",
"itertools-ts": "^2.3.1",
"zod": "^4.1.12"
},
"trustedDependencies": [
"svelte-preprocess"
]
}