generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 947 Bytes
/
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
{
"name": "obsidian-paste-to-current-indentation",
"version": "5.0.2",
"description": "This plugin allows pasting and marking text as block-quotes at any level of indentation.",
"main": "main.js",
"scripts": {
"icons": "node createIconsDict.js",
"dev": "yarn icons && node esbuild.config.mjs",
"build": "yarn icons && node esbuild.config.mjs production"
},
"keywords": [],
"repository": "https://github.com/publicus/obsidian-paste-to-current-indentation",
"author": "Jacob Levernier",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^14.14.37",
"esbuild": "0.13.12",
"eslint-config-next": "^12.1.5",
"obsidian": "^1.1.1",
"tslib": "^2.2.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"xmldom": "^0.6.0"
},
"dependencies": {
"@types/lodash.clonedeep": "^4.5.7",
"lodash.clonedeep": "^4.5.0",
"moment": "^2.29.3"
}
}