|
1 | 1 | { |
2 | | - "name": "obsidian-meta-bind-plugin", |
3 | | - "version": "1.2.5", |
4 | | - "description": "Make your notes interactive with inline input fields, metadata displays, and buttons.", |
5 | | - "main": "main.js", |
6 | | - "scripts": { |
7 | | - "dev": "bun run automation/build/esbuild.dev.config.ts", |
8 | | - "build": "bun run tsc && bun run automation/build/esbuild.config.ts", |
9 | | - "dev-publish": "bun run automation/build/esbuild.publish.dev.config.ts", |
10 | | - "build-publish": "bun run tsc && node automation/build/esbuild.publish.config.ts", |
11 | | - "tsc": "tsc -noEmit -skipLibCheck", |
12 | | - "test": "LOG_TESTS=false bun test --conditions=browser", |
13 | | - "test:log": "LOG_TESTS=true bun test --conditions=browser", |
14 | | - "format": "prettier --write --plugin prettier-plugin-svelte .", |
15 | | - "format:check": "prettier --check --plugin prettier-plugin-svelte .", |
16 | | - "lint": "eslint --max-warnings=0 packages/** --no-warn-ignored", |
17 | | - "lint:fix": "eslint --max-warnings=0 --fix packages/** --no-warn-ignored", |
18 | | - "svelte-check": "svelte-check --compiler-warnings \"unused-export-let:ignore\"", |
19 | | - "types": "tsc -p \"./tsconfig.types.json\"", |
20 | | - "check": "bun run format:check && bun run tsc && bun run svelte-check && bun run lint && bun run test", |
21 | | - "check:fix": "bun run format && bun run tsc && bun run svelte-check && bun run lint:fix && bun run test", |
22 | | - "pack:i": "bun run automation/installScript.ts", |
23 | | - "pack:i:clean": "bun run automation/installScriptClean.ts", |
24 | | - "release": "bun run automation/release.ts", |
25 | | - "serve-publish": "bun --watch automation/publishServer.ts", |
26 | | - "stats": "bun run automation/stats.ts" |
27 | | - }, |
28 | | - "keywords": [], |
29 | | - "author": "Moritz Jung", |
30 | | - "license": "GPL-3.0", |
31 | | - "devDependencies": { |
32 | | - "@elysiajs/cors": "^1.1.1", |
33 | | - "@happy-dom/global-registrator": "^14.12.3", |
34 | | - "@tsconfig/svelte": "^5.0.4", |
35 | | - "@types/bun": "^1.1.13", |
36 | | - "builtin-modules": "^4.0.0", |
37 | | - "elysia": "^1.1.24", |
38 | | - "esbuild": "^0.24.0", |
39 | | - "esbuild-plugin-copy-watch": "^2.3.1", |
40 | | - "esbuild-svelte": "^0.8.2", |
41 | | - "eslint": "^9.14.0", |
42 | | - "eslint-plugin-import": "^2.31.0", |
43 | | - "eslint-plugin-isaacscript": "^4.0.0", |
44 | | - "eslint-plugin-no-relative-import-paths": "^1.5.5", |
45 | | - "eslint-plugin-only-warn": "^1.1.0", |
46 | | - "eslint-plugin-svelte": "^2.46.0", |
47 | | - "prettier": "^3.3.3", |
48 | | - "prettier-plugin-svelte": "^3.2.7", |
49 | | - "string-argv": "^0.3.2", |
50 | | - "svelte-check": "^4.0.5", |
51 | | - "svelte-preprocess": "^6.0.3", |
52 | | - "tslib": "^2.8.1", |
53 | | - "typescript": "^5.6.3", |
54 | | - "typescript-eslint": "^8.13.0", |
55 | | - "yaml": "^2.6.0" |
56 | | - }, |
57 | | - "dependencies": { |
58 | | - "@codemirror/legacy-modes": "^6.4.2", |
59 | | - "@lemons_dev/parsinom": "^0.0.12", |
60 | | - "itertools-ts": "^1.27.1", |
61 | | - "mathjs": "^13.2.0", |
62 | | - "moment": "^2.30.1", |
63 | | - "svelte": "^5.1.9", |
64 | | - "zod": "^3.23.8", |
65 | | - "zod-validation-error": "^3.4.0" |
66 | | - }, |
67 | | - "private": true, |
68 | | - "trustedDependencies": [ |
69 | | - "esbuild", |
70 | | - "svelte-preprocess" |
71 | | - ] |
| 2 | + "name": "obsidian-meta-bind-plugin", |
| 3 | + "version": "1.2.5", |
| 4 | + "description": "Make your notes interactive with inline input fields, metadata displays, and buttons.", |
| 5 | + "main": "main.js", |
| 6 | + "scripts": { |
| 7 | + "dev": "bun run automation/build/esbuild.dev.config.ts", |
| 8 | + "build": "bun run tsc && bun run automation/build/esbuild.config.ts", |
| 9 | + "dev-publish": "bun run automation/build/esbuild.publish.dev.config.ts", |
| 10 | + "build-publish": "bun run tsc && node automation/build/esbuild.publish.config.ts", |
| 11 | + "tsc": "tsc -noEmit -skipLibCheck", |
| 12 | + "test": "LOG_TESTS=false bun test --conditions=browser", |
| 13 | + "test:log": "LOG_TESTS=true bun test --conditions=browser", |
| 14 | + "format": "prettier --write --plugin prettier-plugin-svelte .", |
| 15 | + "format:check": "prettier --check --plugin prettier-plugin-svelte .", |
| 16 | + "lint": "eslint --max-warnings=0 packages/** --no-warn-ignored", |
| 17 | + "lint:fix": "eslint --max-warnings=0 --fix packages/** --no-warn-ignored", |
| 18 | + "svelte-check": "svelte-check --compiler-warnings \"unused-export-let:ignore\"", |
| 19 | + "types": "tsc -p \"./tsconfig.types.json\"", |
| 20 | + "check": "bun run format:check && bun run tsc && bun run svelte-check && bun run lint && bun run test", |
| 21 | + "check:fix": "bun run format && bun run tsc && bun run svelte-check && bun run lint:fix && bun run test", |
| 22 | + "pack:i": "bun run automation/installScript.ts", |
| 23 | + "pack:i:clean": "bun run automation/installScriptClean.ts", |
| 24 | + "release": "bun run automation/release.ts", |
| 25 | + "serve-publish": "bun --watch automation/publishServer.ts", |
| 26 | + "stats": "bun run automation/stats.ts" |
| 27 | + }, |
| 28 | + "keywords": [], |
| 29 | + "author": "Moritz Jung", |
| 30 | + "license": "GPL-3.0", |
| 31 | + "devDependencies": { |
| 32 | + "@elysiajs/cors": "^1.1.1", |
| 33 | + "@happy-dom/global-registrator": "^14.12.3", |
| 34 | + "@tsconfig/svelte": "^5.0.4", |
| 35 | + "@types/bun": "^1.1.13", |
| 36 | + "builtin-modules": "^4.0.0", |
| 37 | + "elysia": "^1.1.24", |
| 38 | + "esbuild": "^0.24.0", |
| 39 | + "esbuild-plugin-copy-watch": "^2.3.1", |
| 40 | + "esbuild-svelte": "^0.8.2", |
| 41 | + "eslint": "^9.14.0", |
| 42 | + "eslint-plugin-import": "^2.31.0", |
| 43 | + "eslint-plugin-isaacscript": "^4.0.0", |
| 44 | + "eslint-plugin-no-relative-import-paths": "^1.5.5", |
| 45 | + "eslint-plugin-only-warn": "^1.1.0", |
| 46 | + "eslint-plugin-svelte": "^2.46.0", |
| 47 | + "prettier": "^3.3.3", |
| 48 | + "prettier-plugin-svelte": "^3.2.7", |
| 49 | + "string-argv": "^0.3.2", |
| 50 | + "svelte-check": "^4.0.5", |
| 51 | + "svelte-preprocess": "^6.0.3", |
| 52 | + "tslib": "^2.8.1", |
| 53 | + "typescript": "^5.6.3", |
| 54 | + "typescript-eslint": "^8.13.0", |
| 55 | + "yaml": "^2.6.0" |
| 56 | + }, |
| 57 | + "dependencies": { |
| 58 | + "@codemirror/legacy-modes": "^6.4.2", |
| 59 | + "@lemons_dev/parsinom": "^0.0.12", |
| 60 | + "itertools-ts": "^1.27.1", |
| 61 | + "mathjs": "^13.2.0", |
| 62 | + "moment": "^2.30.1", |
| 63 | + "svelte": "^5.1.9", |
| 64 | + "zod": "^3.23.8", |
| 65 | + "zod-validation-error": "^3.4.0" |
| 66 | + }, |
| 67 | + "private": true, |
| 68 | + "trustedDependencies": [ |
| 69 | + "esbuild", |
| 70 | + "svelte-preprocess" |
| 71 | + ] |
72 | 72 | } |
0 commit comments