generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.41 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
45
46
47
48
49
50
51
52
53
54
{
"name": "link-favicon",
"version": "1.8.1",
"description": "See the favicon for a linked website. ",
"main": "src/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"lint": "eslint . --ext .ts",
"lint-css": "stylelint src/styles.scss",
"test": "jest"
},
"keywords": [],
"author": "Johannes Theiner",
"license": "GPL-3.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0",
"esbuild": "0.13.12",
"eslint": "8.4.1",
"sass": "1.49.9",
"css-minify": "2.0.0",
"stylelint": "14.9.1",
"stylelint-config-standard": "26.0.0",
"stylelint-config-standard-scss": "3.0.0",
"jest": "28.1.3",
"@types/jest": "28.1.6",
"ts-jest": "28.0.7",
"jsdom": "20.0.0",
"@types/jsdom": "20.0.0",
"jsdom-global": "3.0.2",
"jest-environment-jsdom": "28.1.3"
},
"dependencies": {
"@aidenlx/obsidian-icon-shortcodes": "0.9.0",
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/state": "6.0.0",
"@codemirror/view": "6.0.0",
"@types/node": "16.11.11",
"obsidian": "0.15.0",
"tslib": "2.3.1",
"typescript": "4.4.4",
"fast-average-color": "9.4.0",
"@popperjs/core": "2.11.2",
"tinycolor2": "1.6.0",
"@types/tinycolor2": "1.4.4",
"localstorage-slim": "2.3.0",
"builtin-modules": "3.2.0",
"localforage": "1.10.0"
},
"overrides": {
"obsidian": "$obsidian"
}
}