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

47 lines
1.6 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",
2022-07-25 06:16:49 +02:00
"version": "0.12.3",
"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": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/diff-match-patch": "^1.0.32",
"@types/pouchdb": "^6.4.0",
2021-10-12 16:50:13 +02:00
"@types/pouchdb-browser": "^6.1.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.0.0",
"builtin-modules": "^3.2.0",
"esbuild": "0.13.12",
"esbuild-svelte": "^0.7.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
2022-07-14 11:35:04 +02:00
"obsidian": "^0.15.4",
2022-07-25 06:22:37 +02:00
"postcss": "^8.4.14",
"postcss-load-config": "^3.1.4",
2021-10-12 16:50:13 +02:00
"rollup": "^2.32.1",
"svelte-preprocess": "^4.10.5",
2021-10-12 16:50:13 +02:00
"tslib": "^2.2.0",
"typescript": "^4.2.4"
2021-10-14 12:27:08 +02:00
},
"dependencies": {
2021-10-15 10:58:42 +02:00
"diff-match-patch": "^1.0.5",
"esbuild": "0.13.12",
"esbuild-svelte": "^0.7.0",
"idb": "^7.0.2",
2022-07-25 06:22:37 +02:00
"svelte-preprocess": "^4.10.5",
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:22:37 +02:00
}