-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "obsidian-simple-sync",
"version": "0.1.2",
"description": "Dead-simple vault sync via CouchDB",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"typecheck": "tsgo --noEmit",
"lint": "eslint src/",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:watch": "vitest",
"check": "concurrently -n types,lint,test --kill-others-on-fail \"tsgo --noEmit\" \"eslint src/\" \"vitest run\""
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@types/diff-match-patch": "^1.0.36",
"@types/node": "^22.0.0",
"@types/pouchdb": "^6.4.2",
"@typescript/native-preview": "^7.0.0-dev.20260329.1",
"builtin-modules": "^4.0.0",
"concurrently": "^9.2.1",
"esbuild": "^0.24.0",
"eslint": "^10.1.0",
"eslint-plugin-obsidianmd": "^0.1.9",
"obsidian": "latest",
"pouchdb": "^9.0.0",
"pouchdb-adapter-http": "^9.0.0",
"pouchdb-adapter-memory": "^9.0.0",
"pouchdb-core": "^9.0.0",
"pouchdb-find": "^9.0.0",
"pouchdb-mapreduce": "^9.0.0",
"pouchdb-replication": "^9.0.0",
"prettier": "^3.8.1",
"tslib": "^2.8.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.57.2",
"vitest": "^3.0.0"
},
"dependencies": {
"diff-match-patch": "^1.0.5",
"events": "^3.3.0",
"pouchdb-browser": "^9.0.0",
"zod": "^4.3.6"
}
}