-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.84 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
55
56
57
58
59
{
"name": "obsidian-nextcloudsync",
"version": "0.7.38",
"description": "Bidirectional sync between Obsidian and Nextcloud",
"main": "main.js",
"packageManager": "pnpm@11.4.0",
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint src",
"secretlint": "secretlint \"**/*\"",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:b1": "jest --config jest.b1.config.js --runInBand",
"test:b1:par": "jest --config jest.b1.config.js --maxWorkers=5",
"test:b1:cluster": "bash scripts/b1-cluster.sh",
"test:b2": "wdio run wdio.conf.mts",
"test:b2:instance": "bash scripts/b2-instance.sh"
},
"keywords": [
"obsidian",
"nextcloud",
"sync",
"webdav"
],
"author": "Daisuke ITO",
"license": "MIT",
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
"@secretlint/secretlint-rule-pattern": "^13.0.2",
"@secretlint/secretlint-rule-preset-recommend": "^13.0.2",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^26.0.0",
"@wdio/cli": "^9.29.0",
"@wdio/local-runner": "^9.29.0",
"@wdio/mocha-framework": "^9.29.0",
"@xmldom/xmldom": "^0.9.10",
"esbuild": "0.28.1",
"eslint": "^10.5.0",
"eslint-plugin-obsidianmd": "^0.4.1",
"jest": "^30.4.2",
"js-yaml": "^5.2.2",
"mocha": "^11.7.6",
"obsidian": "^1.13.1",
"secretlint": "^13.0.2",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"wdio-obsidian-reporter": "^3.1.1",
"wdio-obsidian-service": "^3.1.1"
},
"dependencies": {
"node-diff3": "^3.2.1",
"reconcile-text": "^0.12.1"
}
}