-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 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
{
"name": "obsidian-dynamic-highlights",
"version": "0.2.0",
"description": "An Obsidian plugin that dynamically highlights text based on selection or search query",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/commands": "^6.0.0",
"@codemirror/lang-css": "^6.0.0",
"@codemirror/lang-html": "^6.0.0",
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/lint": "^6.0.0",
"@codemirror/search": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@simonwep/pickr": "https://github.com/nothingislost/pickr/archive/a17739f7aa1871b44da778cbb79ae76dae77d839.tar.gz",
"@types/lodash": "^4.14.178",
"@types/node": "^16.11.6",
"@types/sortablejs": "^1.10.7",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"ajv": "^8.9.0",
"builtin-modules": "^3.2.0",
"codemirror": "^6.0.0",
"codemirror6-themes": "^0.1.2",
"esbuild": "0.13.12",
"lodash": "^4.17.21",
"monkey-around": "^2.2.0",
"obsidian": "^0.14.8",
"regexp-match-indices": "^1.0.2",
"sortablejs": "^1.14.0",
"stylelint": "^14.2.0",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "^24.0.0",
"tslib": "2.3.1",
"typescript": "4.4.4",
"typescript-json-schema": "^0.53.0"
}
}