-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.67 KB
/
package.json
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
{
"name": "obsidian-note-gallery",
"version": "0.0.60",
"description": "A masonry note gallery for Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"prettier": "prettier --write 'src/**/*.+(ts|tsx|json|html|css)' 'styles.css'",
"eslint": "eslint . --ext .ts,.tsx --fix",
"check-format": "npx prettier --check src",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"version": "node version-bump.mjs && git add manifest.json versions.json package.json"
},
"author": "Pash Shocky",
"homepage": "https://github.com/pashashocky/obsidian-note-gallery#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pashashocky/obsidian-note-gallery.git"
},
"keywords": ["note", "gallery", "plugin", "obsidian", "masonry"],
"license": "GPL-3.0+",
"devDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "^0.15.7",
"eslint": "^8.51.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"obsidian": "latest",
"prettier": "^2.6.2",
"tslib": "2.4.0",
"typescript": "4.4.4"
},
"dependencies": {
"esbuild-plugin-inline-worker": "^0.1.1",
"localforage": "^1.10.0",
"localforage-getitems": "^1.4.2",
"localforage-setitems": "^1.4.0",
"monkey-around": "^2.3.0",
"preact": "^10.18.2"
}
}