1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2024-12-12 09:04:06 +02:00
obsidian-livesync/package.json

63 lines
2.2 KiB
JSON
Raw Normal View History

2021-10-12 16:50:13 +02:00
{
2021-10-14 18:34:03 +02:00
"name": "obsidian-livesync",
2023-08-08 11:45:50 +02:00
"version": "0.19.17",
"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",
"type": "module",
2021-10-12 16:50:13 +02:00
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"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": {
"@tsconfig/svelte": "^5.0.0",
2021-10-12 16:50:13 +02:00
"@types/diff-match-patch": "^1.0.32",
"@types/node": "^20.2.5",
"@types/pouchdb": "^6.4.0",
2021-10-12 16:50:13 +02:00
"@types/pouchdb-browser": "^6.1.3",
"@types/pouchdb-adapter-http": "^6.1.3",
"@types/pouchdb-adapter-idb": "^6.1.4",
"@types/pouchdb-core": "^7.0.11",
"@types/pouchdb-mapreduce": "^6.1.7",
"@types/pouchdb-replication": "^6.4.4",
"@types/transform-pouch": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
2022-11-23 03:27:12 +02:00
"builtin-modules": "^3.3.0",
"esbuild": "0.18.17",
"esbuild-svelte": "^0.7.4",
"eslint": "^8.46.0",
2022-11-23 03:27:12 +02:00
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"events": "^3.3.0",
"obsidian": "^1.3.5",
"postcss": "^8.4.27",
2022-11-23 03:27:12 +02:00
"postcss-load-config": "^4.0.1",
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",
"pouchdb-errors": "^8.0.1",
2023-03-02 05:51:46 +02:00
"pouchdb-find": "^8.0.1",
"pouchdb-mapreduce": "^8.0.1",
"pouchdb-merge": "^8.0.1",
2023-03-02 05:51:46 +02:00
"pouchdb-replication": "^8.0.1",
"pouchdb-utils": "^8.0.1",
"svelte": "^4.1.2",
"svelte-preprocess": "^5.0.4",
"terser": "^5.19.2",
"transform-pouch": "^2.0.0",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
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
"idb": "^7.1.1",
"minimatch": "^9.0.3",
"xxhash-wasm": "0.4.2",
"xxhash-wasm-102": "npm:xxhash-wasm@^1.0.2"
2021-10-12 16:50:13 +02:00
}
}