forked from silvanocerza/github-gitless-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.9 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
49
50
51
52
53
54
{
"name": "github-easy-sync",
"version": "2.0.2-beta",
"description": "Sync a GitHub repository with vaults on different platforms without requiring git installation",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:bootstrap": "vitest run --config vitest.integration.config.ts tests/integration/scenarios/sync2/bootstrap",
"test:integration:nonbootstrap": "vitest run --config vitest.integration.config.ts --passWithNoTests --exclude 'tests/integration/scenarios/sync2/bootstrap/**'",
"test:perf": "vitest run --config vitest.perf.config.ts",
"version": "node version-bump.mjs",
"benchmark": "tsx benchmark.ts"
},
"keywords": [],
"author": "Vladyslav Kozlovskyy",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/node": "^22.10.5",
"@types/path-browserify": "^1.0.3",
"@types/proxyquire": "^1.3.31",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"builtin-modules": "^4.0.0",
"dotenv": "^17.4.2",
"esbuild": "^0.24.2",
"obsidian": "^1.7.2",
"path-browserify": "^1.0.1",
"proxyquire": "^2.1.3",
"sinon": "^20.0.0",
"tslib": "^2.8.1",
"tsx": "^4.19.3",
"typescript": "^5.7.2",
"vitest": "^4.1.5"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/merge": "^6.12.1",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.2",
"@uiw/react-codemirror": "^4.23.8",
"codemirror": "^6.0.1",
"ignore": "^7.0.5",
"node-diff3": "^3.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}