forked from kavinsood/yaos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.61 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.61 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
{
"name": "yaos",
"version": "1.2.0",
"description": "A zero-terminal, real-time sync engine powered by your own Cloudflare Worker.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test:regressions": "node --import jiti/register tests/diff-regressions.mjs && node tests/disk-mirror-regressions.mjs && node tests/markdown-ingest-regressions.mjs && node --import jiti/register tests/closed-file-mirror.ts && node --import jiti/register tests/folder-rename.ts && node --import jiti/register tests/chunked-doc-store.ts && node --import jiti/register tests/v2-offline-rename-regressions.mjs",
"test:integration:worker": "node tests/worker-integration.mjs",
"test:e2e:obsidian": "wdio run wdio.conf.mts",
"test:ci": "npm run test:regressions && npm run test:integration:worker",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint ."
},
"keywords": [],
"license": "0-BSD",
"devDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@eslint/js": "9.30.1",
"@types/node": "^16.11.6",
"esbuild": "0.25.5",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"jiti": "2.6.1",
"tslib": "^2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.35.1",
"ws": "^8.19.0"
},
"dependencies": {
"fast-diff": "^1.3.0",
"fflate": "^0.8.2",
"obsidian": "1.8.7",
"partyserver": "0.3.2",
"qrcode": "^1.5.4",
"y-codemirror.next": "^0.3.5",
"y-indexeddb": "^9.0.12",
"y-partyserver": "2.1.2",
"yjs": "^13.6.20"
}
}