forked from reorx/obsidian-paste-image-rename
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 784 Bytes
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
{
"name": "obsidian-paste-image-rename",
"version": "1.6.1",
"main": "main.js",
"scripts": {
"start": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && BUILD_ENV=production node esbuild.config.mjs && cp manifest.json build",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"release": "npm run build && gh release create ${npm_package_version} build/*"
},
"keywords": [],
"author": "Reorx",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"builtin-modules": "^3.3.0",
"esbuild": "0.16.17",
"obsidian": "^1.1.1",
"tslib": "2.5.0",
"typescript": "4.9.4"
},
"dependencies": {
"cash-dom": "^8.1.2"
}
}