-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.66 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.66 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
{
"name": "diffzip",
"version": "0.1.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",
"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"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-s3": "^3.726.1",
"@smithy/fetch-http-handler": "^5.0.1",
"@smithy/protocol-http": "^5.0.1",
"@smithy/querystring-builder": "^4.0.1",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.19.19",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"builtin-modules": "4.0.0",
"esbuild": "0.24.2",
"esbuild-svelte": "^0.9.0",
"eslint": "^9.39.3",
"eslint-plugin-obsidianmd": "^0.3.0",
"eslint-plugin-svelte": "^3.15.0",
"obsidian": "^1.8.7",
"prettier": "^3.5.3",
"svelte": "^5.1.15",
"svelte-check": "^4.0.7",
"svelte-preprocess": "^6.0.3",
"tslib": "2.8.1",
"typescript": "5.7.3"
},
"dependencies": {
"fflate": "^0.8.2",
"octagonal-wheels": "^0.1.38"
}
}