Complete the basic functions of the plug-in

This commit is contained in:
2025-09-01 17:07:20 +08:00
parent 7daee1aa86
commit fe0e85b2c8
7 changed files with 3280 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "obsidian-tos-picbed",
"version": "1.0.0",
"description": "Used to automatically upload pictures to TOS and delete remote files when pictures are deleted",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
},
"keywords": [
"obsidian",
"picbed"
],
"author": "yv1ing",
"license": "MIT",
"devDependencies": {
"@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.17.3",
"obsidian": "^1.8.7",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@volcengine/tos-sdk": "^2.7.5"
}
}