-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 3.16 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "diffzip",
"version": "0.1.13",
"packageManager": "npm@10.9.4",
"description": "Differential ZIP Backup",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"deploy:test": "node --env-file=.env deploy-test-vaults.mjs",
"build:deploy": "npm run build && npm run deploy:test",
"test:ui": "vitest run --config vitest.config.ts",
"test:ui:watch": "vitest --config vitest.config.ts",
"test:release": "node --test test/release/*.test.mjs",
"check:e2e:obsidian": "tsc -p test/e2e-obsidian/tsconfig.json",
"test:e2e:obsidian:restore-confirmation": "npm run build && tsx test/e2e-obsidian/restore-confirmation.mts",
"test:e2e:obsidian:legacy-folder-restore": "npm run build && tsx test/e2e-obsidian/legacy-folder-restore.mts",
"test:e2e:obsidian:mirror-delete-semantics": "npm run build && tsx test/e2e-obsidian/mirror-delete-semantics.mts",
"test:e2e:obsidian:wake-lock": "npm run build && tsx test/e2e-obsidian/wake-lock.mts",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"pretty": "npm run prettyNoWrite -- --write --log-level error",
"prettyCheck": "npm run prettyNoWrite -- --check",
"prettyNoWrite": "prettier --config ./.prettierrc \"*.ts\" ",
"lint": "eslint src",
"lint:community": "eslint --config eslint.community.config.mjs --concurrency off main.ts src"
},
"keywords": [],
"author": "vorotamoroz",
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-s3": "^3.1132.0",
"@dword-design/eslint-plugin-import-alias": "^8.1.8",
"@emnapi/core": "^1.11.3",
"@emnapi/runtime": "^1.11.3",
"@smithy/fetch-http-handler": "^5.8.0",
"@smithy/protocol-http": "^5.6.2",
"@smithy/querystring-builder": "^4.5.2",
"@smithy/types": "^4.18.0",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@testing-library/svelte": "^5.4.2",
"@testing-library/user-event": "^14.6.7",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^26.5.1",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"@vrtmrz/obsidian-test-session": "0.2.6",
"esbuild": "0.28.2",
"esbuild-svelte": "^0.9.5",
"eslint": "^10.10.0",
"eslint-plugin-obsidianmd": "^0.4.2",
"eslint-plugin-svelte": "^3.23.0",
"globals": "^17.12.0",
"jsdom": "^30.0.1",
"obsidian": "^1.13.1",
"playwright": "^1.63.0",
"prettier": "^3.9.6",
"svelte": "^5.57.0",
"svelte-check": "^4.7.6",
"svelte-eslint-parser": "^1.8.1",
"svelte-preprocess": "^6.0.5",
"tslib": "2.8.1",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.0",
"vite": "^8.3.0",
"vitest": "^5.0.1"
},
"dependencies": {
"@vrtmrz/obsidian-plugin-kit": "0.1.4",
"@vrtmrz/ui-interactions": "0.1.2",
"fflate": "^0.8.3",
"octagonal-wheels": "0.1.54"
}
}