This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.42 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
39
40
41
42
43
44
{
"name": "obsidian-vale",
"version": "0.9.0",
"description": "A Vale client for Obsidian.",
"main": "main.js",
"scripts": {
"dev": "esbuild ./src/main.ts --bundle --minify --platform=node --external:obsidian --external:electron --sourcemap=inline --define:DEBUG=true --outfile=main.js --watch",
"build": "esbuild ./src/main.ts --bundle --minify --platform=node --external:obsidian --external:electron --define:DEBUG=false --outfile=main.js",
"lint": "eslint ./ --ignore-path .gitignore",
"format": "prettier --write \"{,!(node_modules)/**/}*.{ts,tsx}\""
},
"keywords": [
"obsidian-plugin"
],
"author": "Marcus Olsson",
"license": "MIT",
"devDependencies": {
"@types/download": "^8.0.1",
"@types/ini": "^1.3.30",
"@types/node": "^14.14.37",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/unzipper": "^0.10.4",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"obsidian": "0.12.16",
"prettier": "^2.4.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"esbuild": "^0.13.3"
},
"dependencies": {
"compressing": "^1.5.1",
"download": "^8.0.0",
"ini": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"unzipper": "^0.10.11"
}
}