|
1 | 1 | {
|
2 |
| - "name": "obsidian-js-engine-plugin", |
3 |
| - "version": "0.1.8", |
4 |
| - "description": "This plugin for obsidian allows you to use and run JavaScript from within your notes.", |
5 |
| - "main": "main.js", |
6 |
| - "scripts": { |
7 |
| - "dev": "bun run automation/build/esbuild.dev.config.ts", |
8 |
| - "build": "tsc -noEmit -skipLibCheck && bun run automation/build/esbuild.config.ts", |
9 |
| - "tsc": "tsc -noEmit -skipLibCheck", |
10 |
| - "test": "LOG_TESTS=false bun test", |
11 |
| - "test:log": "LOG_TESTS=true bun test", |
12 |
| - "format": "prettier --write --plugin prettier-plugin-svelte .", |
13 |
| - "format:check": "prettier --check --plugin prettier-plugin-svelte .", |
14 |
| - "lint": "eslint --max-warnings=0", |
15 |
| - "lint:fix": "eslint --max-warnings=0 --fix jsEngine/**", |
16 |
| - "svelte-check": "svelte-check", |
17 |
| - "check": "bun run format:check && bun run tsc && bun run svelte-check && bun run lint && bun run test", |
18 |
| - "check:fix": "bun run format && bun run tsc && bun run svelte-check && bun run lint:fix && bun run test", |
19 |
| - "release": "bun run automation/release.ts", |
20 |
| - "types": "tsc --project tsconfig.types.json" |
21 |
| - }, |
22 |
| - "keywords": [], |
23 |
| - "author": "Moritz Jung", |
24 |
| - "license": "GPL-3.0", |
25 |
| - "devDependencies": { |
26 |
| - "@codemirror/autocomplete": "^6.18.0", |
27 |
| - "@codemirror/lang-javascript": "^6.2.2", |
28 |
| - "@codemirror/language": "^6.10.2", |
29 |
| - "@codemirror/lint": "^6.8.1", |
30 |
| - "@codemirror/state": "^6.4.1", |
31 |
| - "@codemirror/view": "^6.30.0", |
32 |
| - "@eslint/js": "^9.8.0", |
33 |
| - "@happy-dom/global-registrator": "^14.12.3", |
34 |
| - "@tsconfig/svelte": "^5.0.4", |
35 |
| - "@types/eslint__js": "^8.42.3", |
36 |
| - "@types/web": "^0.0.151", |
37 |
| - "builtin-modules": "^4.0.0", |
38 |
| - "bun-types": "1.1.18", |
39 |
| - "esbuild": "^0.23.0", |
40 |
| - "esbuild-plugin-copy-watch": "^2.3.1", |
41 |
| - "esbuild-svelte": "^0.8.1", |
42 |
| - "eslint": "^9.8.0", |
43 |
| - "eslint-plugin-no-relative-import-paths": "^1.5.5", |
44 |
| - "eslint-plugin-only-warn": "^1.1.0", |
45 |
| - "obsidian": "latest", |
46 |
| - "obsidian-dataview": "0.5.56", |
47 |
| - "prettier": "^3.3.3", |
48 |
| - "prettier-plugin-svelte": "^3.2.6", |
49 |
| - "string-argv": "^0.3.2", |
50 |
| - "svelte": "^5.0.0-next.210", |
51 |
| - "svelte-check": "^3.8.5", |
52 |
| - "svelte-preprocess": "^6.0.2", |
53 |
| - "tslib": "^2.6.3", |
54 |
| - "typedoc": "^0.26.5", |
55 |
| - "typescript": "^5.5.4", |
56 |
| - "typescript-eslint": "^7.18.0" |
57 |
| - }, |
58 |
| - "dependencies": { |
59 |
| - "@codemirror/legacy-modes": "^6.4.0", |
60 |
| - "@lemons_dev/parsinom": "^0.0.11", |
61 |
| - "itertools-ts": "^1.27.1" |
62 |
| - }, |
63 |
| - "patchedDependencies": { |
64 |
| - |
65 |
| - }, |
66 |
| - "trustedDependencies": [ |
67 |
| - "svelte-preprocess" |
68 |
| - ] |
| 2 | + "name": "obsidian-js-engine-plugin", |
| 3 | + "version": "0.1.8", |
| 4 | + "description": "This plugin for obsidian allows you to use and run JavaScript from within your notes.", |
| 5 | + "main": "main.js", |
| 6 | + "scripts": { |
| 7 | + "dev": "bun run automation/build/esbuild.dev.config.ts", |
| 8 | + "build": "tsc -noEmit -skipLibCheck && bun run automation/build/esbuild.config.ts", |
| 9 | + "tsc": "tsc -noEmit -skipLibCheck", |
| 10 | + "test": "LOG_TESTS=false bun test", |
| 11 | + "test:log": "LOG_TESTS=true bun test", |
| 12 | + "format": "prettier --write --plugin prettier-plugin-svelte .", |
| 13 | + "format:check": "prettier --check --plugin prettier-plugin-svelte .", |
| 14 | + "lint": "eslint --max-warnings=0", |
| 15 | + "lint:fix": "eslint --max-warnings=0 --fix jsEngine/**", |
| 16 | + "svelte-check": "svelte-check", |
| 17 | + "check": "bun run format:check && bun run tsc && bun run svelte-check && bun run lint && bun run test", |
| 18 | + "check:fix": "bun run format && bun run tsc && bun run svelte-check && bun run lint:fix && bun run test", |
| 19 | + "release": "bun run automation/release.ts", |
| 20 | + "types": "tsc --project tsconfig.types.json" |
| 21 | + }, |
| 22 | + "keywords": [], |
| 23 | + "author": "Moritz Jung", |
| 24 | + "license": "GPL-3.0", |
| 25 | + "devDependencies": { |
| 26 | + "@codemirror/autocomplete": "^6.18.0", |
| 27 | + "@codemirror/lang-javascript": "^6.2.2", |
| 28 | + "@codemirror/language": "^6.10.2", |
| 29 | + "@codemirror/lint": "^6.8.1", |
| 30 | + "@codemirror/state": "^6.4.1", |
| 31 | + "@codemirror/view": "^6.30.0", |
| 32 | + "@eslint/js": "^9.8.0", |
| 33 | + "@happy-dom/global-registrator": "^14.12.3", |
| 34 | + "@tsconfig/svelte": "^5.0.4", |
| 35 | + "@types/eslint__js": "^8.42.3", |
| 36 | + "@types/web": "^0.0.151", |
| 37 | + "builtin-modules": "^4.0.0", |
| 38 | + "bun-types": "1.1.18", |
| 39 | + "esbuild": "^0.23.0", |
| 40 | + "esbuild-plugin-copy-watch": "^2.3.1", |
| 41 | + "esbuild-svelte": "^0.8.1", |
| 42 | + "eslint": "^9.8.0", |
| 43 | + "eslint-plugin-no-relative-import-paths": "^1.5.5", |
| 44 | + "eslint-plugin-only-warn": "^1.1.0", |
| 45 | + "obsidian": "latest", |
| 46 | + "obsidian-dataview": "0.5.56", |
| 47 | + "prettier": "^3.3.3", |
| 48 | + "prettier-plugin-svelte": "^3.2.6", |
| 49 | + "string-argv": "^0.3.2", |
| 50 | + "svelte": "^5.0.0-next.210", |
| 51 | + "svelte-check": "^3.8.5", |
| 52 | + "svelte-preprocess": "^6.0.2", |
| 53 | + "tslib": "^2.6.3", |
| 54 | + "typedoc": "^0.26.5", |
| 55 | + "typescript": "^5.5.4", |
| 56 | + "typescript-eslint": "^7.18.0" |
| 57 | + }, |
| 58 | + "dependencies": { |
| 59 | + "@codemirror/legacy-modes": "^6.4.0", |
| 60 | + "@lemons_dev/parsinom": "^0.0.11", |
| 61 | + "itertools-ts": "^1.27.1" |
| 62 | + }, |
| 63 | + "patchedDependencies": { |
| 64 | + |
| 65 | + }, |
| 66 | + "trustedDependencies": [ |
| 67 | + "svelte-preprocess" |
| 68 | + ] |
69 | 69 | }
|
0 commit comments