forked from denisoed/obsidian-orthography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "obsidian-orthography",
"version": "2.0.2",
"description": "Check orthography plugin for Obsidian (https://obsidian.md)",
"repository": {
"type": "git",
"url": "https://github.com/denisoed/obsidian-orthography"
},
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "npm run lint && rollup --config rollup.config.js",
"lint": "eslint '*/**/*.{js,ts}'",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-md-plugin"
],
"author": "Denisoed",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"prettier": "^2.2.1",
"rollup": "^2.32.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
}
}