-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "obsidian-hover-editor",
"version": "0.10.0",
"description": "Transform the Page Preview hover popover into a fully working editor instance",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"prettier": "prettier --write 'src/**/*.+(ts|tsx|json|html|css)' 'styles.css'",
"eslint": "eslint . --ext .ts,.tsx --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/view": "^6.0.0",
"@interactjs/types": "1.10.11",
"@nothingislost/interactjs": "1.10.11",
"@ophidian/core": "0.0.7",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.18.0",
"builtin-modules": "^3.2.0",
"esbuild": "0.13.12",
"esbuild-plugin-copy": "1.2.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"monkey-around": "^3",
"obsidian": "0.15.4",
"parse-unit": "^1.0.1",
"prettier": "^2.6.2",
"tslib": "2.3.1",
"typescript": "4.4.4"
}
}