2021-10-12 23:50:13 +09:00
{
2021-10-15 01:34:03 +09:00
"name" : "obsidian-livesync" ,
2023-06-15 18:13:43 +09:00
"version" : "0.19.11" ,
2021-10-19 17:53:54 +09: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 23:50:13 +09:00
"main" : "main.js" ,
2022-02-16 18:26:13 +09:00
"type" : "module" ,
2021-10-12 23:50:13 +09:00
"scripts" : {
2022-02-16 18:26:13 +09:00
"dev" : "node esbuild.config.mjs" ,
"build" : "node esbuild.config.mjs production" ,
2021-12-16 19:06:42 +09:00
"lint" : "eslint src"
2021-10-12 23:50:13 +09:00
} ,
"keywords" : [ ] ,
2021-10-15 01:34:03 +09:00
"author" : "vorotamoroz" ,
2021-10-12 23:50:13 +09:00
"license" : "MIT" ,
"devDependencies" : {
2023-06-01 12:47:41 +09:00
"@tsconfig/svelte" : "^4.0.1" ,
2021-10-12 23:50:13 +09:00
"@types/diff-match-patch" : "^1.0.32" ,
2023-06-01 12:47:41 +09:00
"@types/node" : "^20.2.5" ,
2022-02-16 18:26:13 +09:00
"@types/pouchdb" : "^6.4.0" ,
2021-10-12 23:50:13 +09:00
"@types/pouchdb-browser" : "^6.1.3" ,
2023-03-02 12:51:46 +09:00
"@typescript-eslint/eslint-plugin" : "^5.54.0" ,
"@typescript-eslint/parser" : "^5.54.0" ,
2022-11-23 10:27:12 +09:00
"builtin-modules" : "^3.3.0" ,
"esbuild" : "0.15.15" ,
"esbuild-svelte" : "^0.7.3" ,
2023-03-02 12:51:46 +09:00
"eslint" : "^8.35.0" ,
2022-11-23 10:27:12 +09:00
"eslint-config-airbnb-base" : "^15.0.0" ,
2023-03-02 12:51:46 +09:00
"eslint-plugin-import" : "^2.27.5" ,
2022-12-27 18:09:51 +09:00
"events" : "^3.3.0" ,
2023-03-02 12:51:46 +09:00
"obsidian" : "^1.1.1" ,
"postcss" : "^8.4.21" ,
2022-11-23 10:27:12 +09:00
"postcss-load-config" : "^4.0.1" ,
2023-03-02 12:51:46 +09:00
"pouchdb-adapter-http" : "^8.0.1" ,
"pouchdb-adapter-idb" : "^8.0.1" ,
"pouchdb-adapter-indexeddb" : "^8.0.1" ,
"pouchdb-core" : "^8.0.1" ,
"pouchdb-find" : "^8.0.1" ,
"pouchdb-mapreduce" : "^8.0.1" ,
"pouchdb-replication" : "^8.0.1" ,
"pouchdb-utils" : "^8.0.1" ,
2023-06-01 12:47:41 +09:00
"svelte" : "^3.59.1" ,
"svelte-preprocess" : "^5.0.3" ,
2022-12-27 18:09:51 +09:00
"transform-pouch" : "^2.0.0" ,
2023-03-02 12:51:46 +09:00
"tslib" : "^2.5.0" ,
2023-06-01 12:47:41 +09:00
"typescript" : "^5.0.4"
2021-10-14 19:27:08 +09:00
} ,
"dependencies" : {
2021-10-15 17:58:42 +09:00
"diff-match-patch" : "^1.0.5" ,
2022-11-23 10:27:12 +09:00
"idb" : "^7.1.1" ,
2023-06-15 17:55:58 +09:00
"xxhash-wasm" : "^0.4.2" ,
"xxhash-wasm-102" : "npm:xxhash-wasm@^1.0.2"
2021-10-12 23:50:13 +09:00
}
2023-06-01 12:47:41 +09:00
}