-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 738 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 738 Bytes
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
{
"name": "obsidian-dropbox-sync",
"version": "1.0.2",
"description": "Dropbox sync plugin for Obsidian",
"main": "main.js",
"exports": {
"./*": "./src/*.ts"
},
"scripts": {
"build": "bun run build.ts",
"dev": "bun --watch build.ts -- --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"test": "bun test",
"test:watch": "bun test --watch"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.0.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"obsidian": "^1.7.2",
"typescript": "^5.6.0",
"typescript-eslint": "^8.57.0"
},
"dependencies": {
"localforage": "^1.10.0"
}
}