-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
47
48
49
50
51
52
53
{
"name": "influx",
"version": "2.3.1",
"description": "Transform your Obsidian backlinks from simple links into rich, contextual excerpts. See the actual content surrounding each link, turning your note connections into genuine insights.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"serve": "docsify serve docs"
},
"keywords": [
"obsidian",
"plugin",
"influx",
"backlinks",
"excerpts",
"notes"
],
"author": "Jens M Gleditsch",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@types/jest": "^30.0.0",
"@types/jss": "^9.5.8",
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"babel-jest": "^30.2.0",
"builtin-modules": "^5.0.0",
"esbuild": "0.27.2",
"obsidian": "latest",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"dependencies": {
"@babel/preset-flow": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@codemirror/state": "6.5.0",
"@codemirror/view": "6.38.6",
"docsify-cli": "5.0.0-rc.3",
"jest": "^30.2.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-jss": "^10.10.0",
"ts-jest": "^29.4.6",
"uuid": "^13.0.0"
}
}