-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "relay",
"version": "1.0.0",
"description": "Real-time collaborative workspace for Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs watch",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"beta": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs debug",
"staging": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs staging",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"lint": "npx eslint . --ext .ts"
},
"keywords": [],
"author": "Daniel Grossmann-Kavanagh",
"license": "MIT",
"devDependencies": {
"@tsconfig/svelte": "^5.0.4",
"@types/diff": "^5.0.9",
"@types/diff-match-patch": "^1.0.36",
"@types/eventsource": "^1.1.15",
"@types/jest": "^29.5.12",
"@types/node": "^16.11.6",
"@types/path-browserify": "^1.0.2",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"builtin-modules": "3.3.0",
"chokidar": "^3.6.0",
"esbuild": "0.17.3",
"esbuild-svelte": "^0.8.0",
"jest": "^29.7.0",
"obsidian": "^1.7.2",
"svelte": "^4.2.19",
"svelte-preprocess": "^5.1.4",
"ts-jest": "^29.1.2",
"tslib": "2.4.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@y-sweet/client": "^0.1.0",
"diff": "^5.2.0",
"diff-match-patch": "^1.0.5",
"eventsource": "^2.0.2",
"gray-matter": "^4.0.3",
"jose": "^5.3.0",
"lucide-svelte": "^0.377.0",
"monkey-around": "^3.0.0",
"obsidian-daily-notes-interface": "^0.9.4",
"path-browserify": "^1.0.1",
"pocketbase": "^0.20.3",
"svelte-step-wizard": "^0.0.2",
"tslib": "2.4.0",
"uuid": "^9.0.1",
"y-indexeddb": "^9.0.9",
"y-leveldb": "^0.1.2",
"y-protocols": "^1.0.5",
"y-websocket": "^1.5.3"
}
}