generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "s3-image-uploader",
"version": "0.2.14",
"description": "This is an image uploading plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/mime-types": "^2.1.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"browser-resolve": "^2.0.0",
"builtin-modules": "3.3.0",
"detective": "^5.2.1",
"esbuild": "0.14.47",
"obsidian": "latest",
"process": "^0.11.10",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@aws-sdk/client-s3": "3.317.0",
"@aws-sdk/fetch-http-handler": "^3.310.0",
"@aws-sdk/protocol-http": "^3.310.0",
"@aws-sdk/querystring-builder": "^3.310.0",
"@aws-sdk/types": "^3.310.0",
"@smithy/fetch-http-handler": "^2.2.7"
}
}