generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 2.21 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
{
"name": "obsidian-js-engine-plugin",
"version": "0.2.1",
"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.18.2",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/language": "^6.10.3",
"@codemirror/lint": "^6.8.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.1",
"@eslint/js": "^9.14.0",
"@happy-dom/global-registrator": "^15.8.0",
"@tsconfig/svelte": "^5.0.4",
"@types/bun": "^1.1.13",
"builtin-modules": "^4.0.0",
"esbuild": "^0.24.0",
"esbuild-plugin-copy-watch": "^2.3.1",
"esbuild-svelte": "^0.8.2",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-only-warn": "^1.1.0",
"obsidian": "latest",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"string-argv": "^0.3.2",
"svelte": "^5.1.9",
"svelte-check": "^4.0.5",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"dependencies": {
"@codemirror/legacy-modes": "^6.4.1",
"@lemons_dev/parsinom": "^0.0.12",
"itertools-ts": "^1.27.1",
"zod": "^3.23.8"
},
"trustedDependencies": [
"svelte-preprocess"
]
}