2021-10-12 16:50:13 +02:00
{
2021-10-14 18:34:03 +02:00
"name" : "obsidian-livesync" ,
2024-03-22 11:50:03 +02:00
"version" : "0.22.16" ,
2021-10-19 10:53:54 +02:00
"description" : "Reflect your vault changes to some other devices immediately. Please make sure to disable other synchronize solutions to avoid content corruption or duplication." ,
2021-10-12 16:50:13 +02:00
"main" : "main.js" ,
2022-02-16 11:26:13 +02:00
"type" : "module" ,
2021-10-12 16:50:13 +02:00
"scripts" : {
2022-02-16 11:26:13 +02:00
"dev" : "node esbuild.config.mjs" ,
"build" : "node esbuild.config.mjs production" ,
2021-12-16 12:06:42 +02:00
"lint" : "eslint src"
2021-10-12 16:50:13 +02:00
} ,
"keywords" : [ ] ,
2021-10-14 18:34:03 +02:00
"author" : "vorotamoroz" ,
2021-10-12 16:50:13 +02:00
"license" : "MIT" ,
"devDependencies" : {
2024-03-15 11:35:41 +02:00
"@tsconfig/svelte" : "^5.0.2" ,
"@types/diff-match-patch" : "^1.0.36" ,
"@types/node" : "^20.11.28" ,
"@types/pouchdb" : "^6.4.2" ,
"@types/pouchdb-adapter-http" : "^6.1.6" ,
"@types/pouchdb-adapter-idb" : "^6.1.7" ,
"@types/pouchdb-browser" : "^6.1.5" ,
"@types/pouchdb-core" : "^7.0.14" ,
"@types/pouchdb-mapreduce" : "^6.1.10" ,
"@types/pouchdb-replication" : "^6.4.7" ,
"@types/transform-pouch" : "^1.0.6" ,
"@typescript-eslint/eslint-plugin" : "^7.2.0" ,
"@typescript-eslint/parser" : "^7.2.0" ,
2022-11-23 03:27:12 +02:00
"builtin-modules" : "^3.3.0" ,
2024-03-15 11:35:41 +02:00
"esbuild" : "0.20.2" ,
"esbuild-svelte" : "^0.8.0" ,
"eslint" : "^8.57.0" ,
2022-11-23 03:27:12 +02:00
"eslint-config-airbnb-base" : "^15.0.0" ,
2024-03-15 11:35:41 +02:00
"eslint-plugin-import" : "^2.29.1" ,
2022-12-27 11:09:51 +02:00
"events" : "^3.3.0" ,
2024-03-15 11:35:41 +02:00
"obsidian" : "^1.5.7" ,
"postcss" : "^8.4.35" ,
"postcss-load-config" : "^5.0.3" ,
2023-03-02 05:51:46 +02:00
"pouchdb-adapter-http" : "^8.0.1" ,
"pouchdb-adapter-idb" : "^8.0.1" ,
"pouchdb-adapter-indexeddb" : "^8.0.1" ,
"pouchdb-core" : "^8.0.1" ,
2023-08-04 10:45:04 +02:00
"pouchdb-errors" : "^8.0.1" ,
2023-03-02 05:51:46 +02:00
"pouchdb-find" : "^8.0.1" ,
"pouchdb-mapreduce" : "^8.0.1" ,
2023-07-26 10:31:55 +02:00
"pouchdb-merge" : "^8.0.1" ,
2023-03-02 05:51:46 +02:00
"pouchdb-replication" : "^8.0.1" ,
"pouchdb-utils" : "^8.0.1" ,
2024-03-15 11:35:41 +02:00
"svelte" : "^4.2.12" ,
"svelte-preprocess" : "^5.1.3" ,
"terser" : "^5.29.2" ,
2022-12-27 11:09:51 +02:00
"transform-pouch" : "^2.0.0" ,
2024-03-15 11:35:41 +02:00
"tslib" : "^2.6.2" ,
"typescript" : "^5.4.2"
2021-10-14 12:27:08 +02:00
} ,
"dependencies" : {
2021-10-15 10:58:42 +02:00
"diff-match-patch" : "^1.0.5" ,
2024-03-15 11:35:41 +02:00
"idb" : "^8.0.0" ,
2023-08-04 10:45:04 +02:00
"minimatch" : "^9.0.3" ,
"xxhash-wasm" : "0.4.2" ,
2023-06-15 10:55:58 +02:00
"xxhash-wasm-102" : "npm:xxhash-wasm@^1.0.2"
2021-10-12 16:50:13 +02:00
}
2023-10-14 16:07:51 +02:00
}