-
Notifications
You must be signed in to change notification settings - Fork 3
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.12",
"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.726.1",
"@dword-design/eslint-plugin-import-alias": "^8.1.8",
"@emnapi/core": "^1.11.1",
"@emnapi/runtime": "^1.11.1",
"@smithy/fetch-http-handler": "^5.0.1",
"@smithy/protocol-http": "^5.0.1",
"@smithy/querystring-builder": "^4.0.1",
"@smithy/types": "^4.17.2",
"@sveltejs/vite-plugin-svelte": "^7.1.4",
"@testing-library/svelte": "^5.4.2",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.19.19",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vrtmrz/obsidian-test-session": "0.2.0",
"esbuild": "0.28.1",
"esbuild-svelte": "^0.9.5",
"eslint": "^9.39.3",
"eslint-plugin-obsidianmd": "^0.4.1",
"eslint-plugin-svelte": "^3.15.0",
"globals": "^14.0.0",
"jsdom": "^29.1.1",
"obsidian": "^1.13.1",
"playwright": "^1.61.1",
"prettier": "^3.5.3",
"svelte": "^5.1.15",
"svelte-check": "^4.0.7",
"svelte-eslint-parser": "^1.8.0",
"svelte-preprocess": "^6.0.3",
"tslib": "2.8.1",
"tsx": "^4.23.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.1.3",
"vitest": "^4.1.10"
},
"dependencies": {
"@vrtmrz/obsidian-plugin-kit": "0.1.0",
"@vrtmrz/ui-interactions": "0.1.0",
"fflate": "^0.8.2",
"octagonal-wheels": "0.1.51"
}
}