generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "obsidian-jtab",
"version": "1.2.3",
"description": "Adds the ability to show guitar chords and tabs directly in your notes using jTab.",
"main": "main.js",
"scripts": {
"dev": "run-s build && node esbuild.config.mjs",
"clean": "rm -rf build/",
"esbuild": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"copy-manifest": "cp manifest.json build/",
"build": "run-s clean esbuild copy-manifest",
"eslint": "npx eslint",
"test": "run-s eslint"
},
"keywords": [],
"author": "davfive",
"license": "MIT",
"devDependencies": {
"@types/color": "3.0.3",
"@types/jquery": "3.5.14",
"@types/lodash": "4.14.182",
"@types/node": "16.11.6",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"builtin-modules": "3.2.0",
"color": "4.2.3",
"esbuild": "0.13.12",
"esbuild-sass-plugin": "2.2.6",
"jquery": "3.6.0",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"obsidian": "0.14.4",
"raphael": "2.3.0",
"rxjs": "7.5.5",
"simple-git": "3.6.0",
"tslib": "2.3.1",
"typescript": "4.4.4"
}
}