-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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-simple-mention",
"version": "1.0.0",
"description": "Get highlighted mentions and mention suggestions. Find all occurrences of a mention",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/commands": "^6.0.1",
"@codemirror/fold": "0.19.0",
"@codemirror/history": "^0.19.0",
"@codemirror/language": "^6.2.1",
"@codemirror/matchbrackets": "^0.19.4",
"@codemirror/panel": "^0.19.0",
"@codemirror/search": "^6.0.0",
"@codemirror/state": "^6.1.0",
"@codemirror/stream-parser": "https://github.com/lishid/stream-parser",
"@codemirror/view": "^6.1.0",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"builtin-modules": "^3.3.0",
"esbuild": "^0.15.6",
"obsidian": "^0.15.4",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"async-mutex": "^0.3.2",
"dexie": "^3.2.2",
"popover-plugin": "^1.0.10",
"popper-plugin": "^1.0.4",
"virtual-select-plugin": "^1.0.31"
}
}