forked from drmobile11/obsidian-rain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "make-it-rain",
"version": "2.2.0",
"description": "Raindrop.io Integration for Obsidian - Tab-based Dashboard with Mobile-First Design",
"main": "main.js",
"scripts": {
"dev": "node scripts/esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node scripts/esbuild.config.mjs production",
"version": "node scripts/version-bump.mjs && git add manifest.json versions.json",
"lint:md": "markdownlint '**/*.md' --fix",
"copy-to-vault": "node scripts/copy-to-vault.mjs",
"build-and-copy": "npm run build && npm run copy-to-vault",
"release": "node scripts/release.mjs"
},
"keywords": [
"obsidian",
"raindrop",
"bookmarks"
],
"author": "frostmute",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.24",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.25.4",
"markdownlint": "^0.38.0",
"markdownlint-cli": "^0.45.0",
"obsidian": "latest",
"tslib": "^2.6.2",
"typescript": "5.3.3"
},
"dependencies": {
"@types/handlebars": "^4.0.40",
"@mdx-js/react": "^3.0.0",
"@mdx-js/loader": "^3.0.0",
"axios": "^1.13.2",
"cheerio": "^1.1.2",
"clsx": "^2.1.0",
"framer-motion": "^11.0.0",
"handlebars": "^4.7.8",
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.0"
}
}