forked from anoopkcn/obsidian-reference-map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 KB
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": "reference-map",
"version": "1.8.1",
"description": "Reference and citation map for literature review and discovery",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"lint": "tsc -noEmit -skipLibCheck",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"bump": "node version-bump.mjs",
"release": "git tag -a $npm_package_version -m \"$npm_package_version\" && git push --tags"
},
"keywords": [],
"author": "Anoop K. Chandran",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/d3": "^7.4.3",
"@types/doi-regex": "^0.1.3",
"@types/lodash": "^4.14.202",
"@types/node": "^16.18.68",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"eslint": "^8.55.0",
"obsidian": "latest",
"tslib": "^2.6.2",
"typescript": "4.7.4"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@retorquere/bibtex-parser": "^7.0.8",
"citeproc": "^2.4.63",
"d3": "^7.8.5",
"doi-regex": "^0.1.13",
"lodash": "^4.17.21",
"lru-cache": "^7.18.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-force-graph-2d": "^1.25.3",
"react-icons": "^4.12.0"
}
}