|
@@ -9,6 +9,10 @@
|
|
|
"version": "0.1.0",
|
|
"version": "0.1.0",
|
|
|
"license": "MIT",
|
|
"license": "MIT",
|
|
|
"dependencies": {
|
|
"dependencies": {
|
|
|
|
|
+ "@codemirror/lang-javascript": "^6.2.4",
|
|
|
|
|
+ "@codemirror/lang-json": "^6.0.2",
|
|
|
|
|
+ "@codemirror/state": "^6.5.3",
|
|
|
|
|
+ "@replit/codemirror-vim": "^6.3.0",
|
|
|
"@tailwindcss/vite": "^4.1.17",
|
|
"@tailwindcss/vite": "^4.1.17",
|
|
|
"@tauri-apps/api": "^2",
|
|
"@tauri-apps/api": "^2",
|
|
|
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
|
|
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
|
|
@@ -16,9 +20,12 @@
|
|
|
"@tauri-apps/plugin-opener": "^2",
|
|
"@tauri-apps/plugin-opener": "^2",
|
|
|
"@tauri-apps/plugin-store": "^2.4.1",
|
|
"@tauri-apps/plugin-store": "^2.4.1",
|
|
|
"clsx": "^2.1.1",
|
|
"clsx": "^2.1.1",
|
|
|
|
|
+ "codemirror": "^6.0.2",
|
|
|
"mode-watcher": "^1.1.0",
|
|
"mode-watcher": "^1.1.0",
|
|
|
|
|
+ "svelte-highlight": "^7.9.0",
|
|
|
"tailwind-merge": "^3.4.0",
|
|
"tailwind-merge": "^3.4.0",
|
|
|
- "tailwindcss": "^4.1.17"
|
|
|
|
|
|
|
+ "tailwindcss": "^4.1.17",
|
|
|
|
|
+ "thememirror": "^2.0.1"
|
|
|
},
|
|
},
|
|
|
"devDependencies": {
|
|
"devDependencies": {
|
|
|
"@internationalized/date": "^3.10.0",
|
|
"@internationalized/date": "^3.10.0",
|
|
@@ -41,6 +48,112 @@
|
|
|
"vite": "^6.0.3"
|
|
"vite": "^6.0.3"
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/@codemirror/autocomplete": {
|
|
|
|
|
+ "version": "6.20.0",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.20.0.tgz",
|
|
|
|
|
+ "integrity": "sha512-bOwvTOIJcG5FVo5gUUupiwYh8MioPLQ4UcqbcRf7UQ98X90tCa9E1kZ3Z7tqwpZxYyOvh1YTYbmZE9RTfTp5hg==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@codemirror/language": "^6.0.0",
|
|
|
|
|
+ "@codemirror/state": "^6.0.0",
|
|
|
|
|
+ "@codemirror/view": "^6.17.0",
|
|
|
|
|
+ "@lezer/common": "^1.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@codemirror/commands": {
|
|
|
|
|
+ "version": "6.10.1",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.10.1.tgz",
|
|
|
|
|
+ "integrity": "sha512-uWDWFypNdQmz2y1LaNJzK7fL7TYKLeUAU0npEC685OKTF3KcQ2Vu3klIM78D7I6wGhktme0lh3CuQLv0ZCrD9Q==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@codemirror/language": "^6.0.0",
|
|
|
|
|
+ "@codemirror/state": "^6.4.0",
|
|
|
|
|
+ "@codemirror/view": "^6.27.0",
|
|
|
|
|
+ "@lezer/common": "^1.1.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@codemirror/lang-javascript": {
|
|
|
|
|
+ "version": "6.2.4",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-6.2.4.tgz",
|
|
|
|
|
+ "integrity": "sha512-0WVmhp1QOqZ4Rt6GlVGwKJN3KW7Xh4H2q8ZZNGZaP6lRdxXJzmjm4FqvmOojVj6khWJHIb9sp7U/72W7xQgqAA==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@codemirror/autocomplete": "^6.0.0",
|
|
|
|
|
+ "@codemirror/language": "^6.6.0",
|
|
|
|
|
+ "@codemirror/lint": "^6.0.0",
|
|
|
|
|
+ "@codemirror/state": "^6.0.0",
|
|
|
|
|
+ "@codemirror/view": "^6.17.0",
|
|
|
|
|
+ "@lezer/common": "^1.0.0",
|
|
|
|
|
+ "@lezer/javascript": "^1.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@codemirror/lang-json": {
|
|
|
|
|
+ "version": "6.0.2",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@codemirror/lang-json/-/lang-json-6.0.2.tgz",
|
|
|
|
|
+ "integrity": "sha512-x2OtO+AvwEHrEwR0FyyPtfDUiloG3rnVTSZV1W8UteaLL8/MajQd8DpvUb2YVzC+/T18aSDv0H9mu+xw0EStoQ==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@codemirror/language": "^6.0.0",
|
|
|
|
|
+ "@lezer/json": "^1.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@codemirror/language": {
|
|
|
|
|
+ "version": "6.12.1",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.12.1.tgz",
|
|
|
|
|
+ "integrity": "sha512-Fa6xkSiuGKc8XC8Cn96T+TQHYj4ZZ7RdFmXA3i9xe/3hLHfwPZdM+dqfX0Cp0zQklBKhVD8Yzc8LS45rkqcwpQ==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@codemirror/state": "^6.0.0",
|
|
|
|
|
+ "@codemirror/view": "^6.23.0",
|
|
|
|
|
+ "@lezer/common": "^1.5.0",
|
|
|
|
|
+ "@lezer/highlight": "^1.0.0",
|
|
|
|
|
+ "@lezer/lr": "^1.0.0",
|
|
|
|
|
+ "style-mod": "^4.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@codemirror/lint": {
|
|
|
|
|
+ "version": "6.9.2",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.9.2.tgz",
|
|
|
|
|
+ "integrity": "sha512-sv3DylBiIyi+xKwRCJAAsBZZZWo82shJ/RTMymLabAdtbkV5cSKwWDeCgtUq3v8flTaXS2y1kKkICuRYtUswyQ==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@codemirror/state": "^6.0.0",
|
|
|
|
|
+ "@codemirror/view": "^6.35.0",
|
|
|
|
|
+ "crelt": "^1.0.5"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@codemirror/search": {
|
|
|
|
|
+ "version": "6.5.11",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.11.tgz",
|
|
|
|
|
+ "integrity": "sha512-KmWepDE6jUdL6n8cAAqIpRmLPBZ5ZKnicE8oGU/s3QrAVID+0VhLFrzUucVKHG5035/BSykhExDL/Xm7dHthiA==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@codemirror/state": "^6.0.0",
|
|
|
|
|
+ "@codemirror/view": "^6.0.0",
|
|
|
|
|
+ "crelt": "^1.0.5"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@codemirror/state": {
|
|
|
|
|
+ "version": "6.5.3",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.5.3.tgz",
|
|
|
|
|
+ "integrity": "sha512-MerMzJzlXogk2fxWFU1nKp36bY5orBG59HnPiz0G9nLRebWa0zXuv2siH6PLIHBvv5TH8CkQRqjBs0MlxCZu+A==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@marijn/find-cluster-break": "^1.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@codemirror/view": {
|
|
|
|
|
+ "version": "6.39.8",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.39.8.tgz",
|
|
|
|
|
+ "integrity": "sha512-1rASYd9Z/mE3tkbC9wInRlCNyCkSn+nLsiQKZhEDUUJiUfs/5FHDpCUDaQpoTIaNGeDc6/bhaEAyLmeEucEFPw==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@codemirror/state": "^6.5.0",
|
|
|
|
|
+ "crelt": "^1.0.6",
|
|
|
|
|
+ "style-mod": "^4.1.0",
|
|
|
|
|
+ "w3c-keyname": "^2.2.4"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
"node_modules/@esbuild/aix-ppc64": {
|
|
"node_modules/@esbuild/aix-ppc64": {
|
|
|
"version": "0.25.12",
|
|
"version": "0.25.12",
|
|
|
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|
|
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|
|
@@ -566,6 +679,52 @@
|
|
|
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/@lezer/common": {
|
|
|
|
|
+ "version": "1.5.0",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.5.0.tgz",
|
|
|
|
|
+ "integrity": "sha512-PNGcolp9hr4PJdXR4ix7XtixDrClScvtSCYW3rQG106oVMOOI+jFb+0+J3mbeL/53g1Zd6s0kJzaw6Ri68GmAA==",
|
|
|
|
|
+ "license": "MIT"
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@lezer/highlight": {
|
|
|
|
|
+ "version": "1.2.3",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.3.tgz",
|
|
|
|
|
+ "integrity": "sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@lezer/common": "^1.3.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@lezer/javascript": {
|
|
|
|
|
+ "version": "1.5.4",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@lezer/javascript/-/javascript-1.5.4.tgz",
|
|
|
|
|
+ "integrity": "sha512-vvYx3MhWqeZtGPwDStM2dwgljd5smolYD2lR2UyFcHfxbBQebqx8yjmFmxtJ/E6nN6u1D9srOiVWm3Rb4tmcUA==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@lezer/common": "^1.2.0",
|
|
|
|
|
+ "@lezer/highlight": "^1.1.3",
|
|
|
|
|
+ "@lezer/lr": "^1.3.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@lezer/json": {
|
|
|
|
|
+ "version": "1.0.3",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@lezer/json/-/json-1.0.3.tgz",
|
|
|
|
|
+ "integrity": "sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@lezer/common": "^1.2.0",
|
|
|
|
|
+ "@lezer/highlight": "^1.0.0",
|
|
|
|
|
+ "@lezer/lr": "^1.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ "node_modules/@lezer/lr": {
|
|
|
|
|
+ "version": "1.4.5",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.5.tgz",
|
|
|
|
|
+ "integrity": "sha512-/YTRKP5yPPSo1xImYQk7AZZMAgap0kegzqCSYHjAL9x1AZ0ZQW+IpcEzMKagCsbTsLnVeWkxYrCNeXG8xEPrjg==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@lezer/common": "^1.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
"node_modules/@lucide/svelte": {
|
|
"node_modules/@lucide/svelte": {
|
|
|
"version": "0.561.0",
|
|
"version": "0.561.0",
|
|
|
"resolved": "https://registry.npmjs.org/@lucide/svelte/-/svelte-0.561.0.tgz",
|
|
"resolved": "https://registry.npmjs.org/@lucide/svelte/-/svelte-0.561.0.tgz",
|
|
@@ -576,6 +735,12 @@
|
|
|
"svelte": "^5"
|
|
"svelte": "^5"
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/@marijn/find-cluster-break": {
|
|
|
|
|
+ "version": "1.0.2",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@marijn/find-cluster-break/-/find-cluster-break-1.0.2.tgz",
|
|
|
|
|
+ "integrity": "sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==",
|
|
|
|
|
+ "license": "MIT"
|
|
|
|
|
+ },
|
|
|
"node_modules/@polka/url": {
|
|
"node_modules/@polka/url": {
|
|
|
"version": "1.0.0-next.29",
|
|
"version": "1.0.0-next.29",
|
|
|
"resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
|
|
"resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
|
|
@@ -583,6 +748,19 @@
|
|
|
"dev": true,
|
|
"dev": true,
|
|
|
"license": "MIT"
|
|
"license": "MIT"
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/@replit/codemirror-vim": {
|
|
|
|
|
+ "version": "6.3.0",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/@replit/codemirror-vim/-/codemirror-vim-6.3.0.tgz",
|
|
|
|
|
+ "integrity": "sha512-aTx931ULAMuJx6xLf7KQDOL7CxD+Sa05FktTDrtLaSy53uj01ll3Zf17JdKsriER248oS55GBzg0CfCTjEneAQ==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "peerDependencies": {
|
|
|
|
|
+ "@codemirror/commands": "6.x.x",
|
|
|
|
|
+ "@codemirror/language": "6.x.x",
|
|
|
|
|
+ "@codemirror/search": "6.x.x",
|
|
|
|
|
+ "@codemirror/state": "6.x.x",
|
|
|
|
|
+ "@codemirror/view": "6.x.x"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
|
"version": "4.53.3",
|
|
"version": "4.53.3",
|
|
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz",
|
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz",
|
|
@@ -1660,6 +1838,21 @@
|
|
|
"node": ">=6"
|
|
"node": ">=6"
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/codemirror": {
|
|
|
|
|
+ "version": "6.0.2",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.2.tgz",
|
|
|
|
|
+ "integrity": "sha512-VhydHotNW5w1UGK0Qj96BwSk/Zqbp9WbnyK2W/eVMv4QyF41INRGpjUhFJY7/uDNuudSc33a/PKr4iDqRduvHw==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "@codemirror/autocomplete": "^6.0.0",
|
|
|
|
|
+ "@codemirror/commands": "^6.0.0",
|
|
|
|
|
+ "@codemirror/language": "^6.0.0",
|
|
|
|
|
+ "@codemirror/lint": "^6.0.0",
|
|
|
|
|
+ "@codemirror/search": "^6.0.0",
|
|
|
|
|
+ "@codemirror/state": "^6.0.0",
|
|
|
|
|
+ "@codemirror/view": "^6.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
"node_modules/cookie": {
|
|
"node_modules/cookie": {
|
|
|
"version": "0.6.0",
|
|
"version": "0.6.0",
|
|
|
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
|
|
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
|
|
@@ -1670,6 +1863,12 @@
|
|
|
"node": ">= 0.6"
|
|
"node": ">= 0.6"
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/crelt": {
|
|
|
|
|
+ "version": "1.0.6",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz",
|
|
|
|
|
+ "integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==",
|
|
|
|
|
+ "license": "MIT"
|
|
|
|
|
+ },
|
|
|
"node_modules/cssesc": {
|
|
"node_modules/cssesc": {
|
|
|
"version": "3.0.0",
|
|
"version": "3.0.0",
|
|
|
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
|
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
|
@@ -1849,6 +2048,15 @@
|
|
|
"dev": true,
|
|
"dev": true,
|
|
|
"license": "ISC"
|
|
"license": "ISC"
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/highlight.js": {
|
|
|
|
|
+ "version": "11.11.1",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.11.1.tgz",
|
|
|
|
|
+ "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==",
|
|
|
|
|
+ "license": "BSD-3-Clause",
|
|
|
|
|
+ "engines": {
|
|
|
|
|
+ "node": ">=12.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
"node_modules/inline-style-parser": {
|
|
"node_modules/inline-style-parser": {
|
|
|
"version": "0.2.7",
|
|
"version": "0.2.7",
|
|
|
"resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
|
|
"resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
|
|
@@ -2506,6 +2714,12 @@
|
|
|
"node": ">=0.10.0"
|
|
"node": ">=0.10.0"
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/style-mod": {
|
|
|
|
|
+ "version": "4.1.3",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.3.tgz",
|
|
|
|
|
+ "integrity": "sha512-i/n8VsZydrugj3Iuzll8+x/00GH2vnYsk1eomD8QiRrSAeW6ItbCQDtfXCeJHd0iwiNagqjQkvpvREEPtW3IoQ==",
|
|
|
|
|
+ "license": "MIT"
|
|
|
|
|
+ },
|
|
|
"node_modules/style-to-object": {
|
|
"node_modules/style-to-object": {
|
|
|
"version": "1.0.14",
|
|
"version": "1.0.14",
|
|
|
"resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
|
|
"resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
|
|
@@ -2564,6 +2778,15 @@
|
|
|
"typescript": ">=5.0.0"
|
|
"typescript": ">=5.0.0"
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/svelte-highlight": {
|
|
|
|
|
+ "version": "7.9.0",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/svelte-highlight/-/svelte-highlight-7.9.0.tgz",
|
|
|
|
|
+ "integrity": "sha512-226LBTtvTnM2L2JkQq8mZeKEeMfPLYyta7VxZatFT4UPX5zdHEerKeMTvrfbxm7MVTWc7TPThsNoVdhWC177KQ==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "dependencies": {
|
|
|
|
|
+ "highlight.js": "11.11.1"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
"node_modules/svelte-toolbelt": {
|
|
"node_modules/svelte-toolbelt": {
|
|
|
"version": "0.10.6",
|
|
"version": "0.10.6",
|
|
|
"resolved": "https://registry.npmjs.org/svelte-toolbelt/-/svelte-toolbelt-0.10.6.tgz",
|
|
"resolved": "https://registry.npmjs.org/svelte-toolbelt/-/svelte-toolbelt-0.10.6.tgz",
|
|
@@ -2643,6 +2866,17 @@
|
|
|
"url": "https://opencollective.com/webpack"
|
|
"url": "https://opencollective.com/webpack"
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/thememirror": {
|
|
|
|
|
+ "version": "2.0.1",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/thememirror/-/thememirror-2.0.1.tgz",
|
|
|
|
|
+ "integrity": "sha512-d5i6FVvWWPkwrm4cHLI3t9AT1OrkAt7Ig8dtdYSofgF7C/eiyNuq6zQzSTusWTde3jpW9WLvA9J/fzNKMUsd0w==",
|
|
|
|
|
+ "license": "MIT",
|
|
|
|
|
+ "peerDependencies": {
|
|
|
|
|
+ "@codemirror/language": "^6.0.0",
|
|
|
|
|
+ "@codemirror/state": "^6.0.0",
|
|
|
|
|
+ "@codemirror/view": "^6.0.0"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
"node_modules/tinyglobby": {
|
|
"node_modules/tinyglobby": {
|
|
|
"version": "0.2.15",
|
|
"version": "0.2.15",
|
|
|
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
|
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
|
@@ -2803,6 +3037,12 @@
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ "node_modules/w3c-keyname": {
|
|
|
|
|
+ "version": "2.2.8",
|
|
|
|
|
+ "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz",
|
|
|
|
|
+ "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==",
|
|
|
|
|
+ "license": "MIT"
|
|
|
|
|
+ },
|
|
|
"node_modules/zimmerframe": {
|
|
"node_modules/zimmerframe": {
|
|
|
"version": "1.1.4",
|
|
"version": "1.1.4",
|
|
|
"resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz",
|
|
"resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz",
|