generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.66 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
49
50
51
52
53
54
{
"name": "image-picker",
"version": "1.1.1",
"description": "Easily find any image inside your vault",
"main": "dist/main.js",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"ci": "npm run typecheck && npm run lint",
"dev": "node esbuild.config.mjs",
"prebuild": "rimraf dist",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build:vault": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production move",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/react-lazyload": "^3.2.3",
"@types/react-virtualized": "^9.22.0",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"builtin-modules": "4.0.0",
"dotenv": "^16.4.7",
"esbuild": "0.24.0",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-sass-plugin": "^3.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.1.0",
"rimraf": "^6.0.1",
"tslib": "2.8.1",
"typescript": "5.7.2"
},
"dependencies": {
"@misskey-dev/browser-image-resizer": "^2024.1.0",
"@react-hook/size": "^2.1.2",
"browser-image-resizer": "^2.4.1",
"dexie": "^4.0.10",
"lodash": "^4.17.21",
"obsidian": "latest",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^11.0.3"
}
}