2021-10-12 16:50:13 +02:00
{
2021-10-14 18:34:03 +02:00
"name" : "obsidian-livesync" ,
2023-02-21 02:13:19 +02:00
"version" : "0.17.26" ,
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" : {
"@types/diff-match-patch" : "^1.0.32" ,
2022-02-16 11:26:13 +02:00
"@types/pouchdb" : "^6.4.0" ,
2021-10-12 16:50:13 +02:00
"@types/pouchdb-browser" : "^6.1.3" ,
2022-11-23 03:27:12 +02:00
"@typescript-eslint/eslint-plugin" : "^5.44.0" ,
"@typescript-eslint/parser" : "^5.44.0" ,
"builtin-modules" : "^3.3.0" ,
"esbuild" : "0.15.15" ,
"esbuild-svelte" : "^0.7.3" ,
"eslint" : "^8.28.0" ,
"eslint-config-airbnb-base" : "^15.0.0" ,
"eslint-plugin-import" : "^2.26.0" ,
2022-12-27 11:09:51 +02:00
"events" : "^3.3.0" ,
2022-10-03 03:57:39 +02:00
"obsidian" : "^0.16.3" ,
2022-11-23 03:27:12 +02:00
"postcss" : "^8.4.19" ,
"postcss-load-config" : "^4.0.1" ,
2022-12-27 11:09:51 +02:00
"pouchdb-adapter-http" : "^8.0.0" ,
"pouchdb-adapter-idb" : "^8.0.0" ,
2023-01-25 13:53:20 +02:00
"pouchdb-adapter-indexeddb" : "^8.0.0" ,
2022-12-27 11:09:51 +02:00
"pouchdb-core" : "^8.0.0" ,
"pouchdb-find" : "^8.0.0" ,
"pouchdb-mapreduce" : "^8.0.0" ,
"pouchdb-replication" : "^8.0.0" ,
"pouchdb-utils" : "file:src/lib/src/patches/pouchdb-utils" ,
2022-11-23 03:27:12 +02:00
"svelte" : "^3.53.1" ,
2022-07-25 06:50:42 +02:00
"svelte-preprocess" : "^4.10.7" ,
2022-12-27 11:09:51 +02:00
"transform-pouch" : "^2.0.0" ,
2022-11-23 03:27:12 +02:00
"tslib" : "^2.4.1" ,
"typescript" : "^4.9.3"
2021-10-14 12:27:08 +02:00
} ,
"dependencies" : {
2021-10-15 10:58:42 +02:00
"diff-match-patch" : "^1.0.5" ,
2022-11-23 03:27:12 +02:00
"esbuild" : "0.15.15" ,
"esbuild-svelte" : "^0.7.3" ,
"idb" : "^7.1.1" ,
2021-10-15 10:58:42 +02:00
"xxhash-wasm" : "^0.4.2"
2021-10-12 16:50:13 +02:00
}
2022-07-25 06:50:42 +02:00
}