-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "rustshare-vault-sync",
"version": "0.1.6",
"description": "Sync local vaults to RustShare. RustShare is not affiliated with, endorsed by, or sponsored by Dynalist Inc.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node node_modules/typescript/bin/tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint . --ext .ts",
"test": "node node_modules/vitest/vitest.mjs run",
"test:coverage": "node node_modules/vitest/vitest.mjs run --coverage",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"rustshare",
"sync",
"vault"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^4.1.8",
"esbuild": "0.24.0",
"eslint": "^8.57.1",
"obsidian": "1.7.2",
"tslib": "2.8.0",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
}
}