-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "@bookfusion/obsidian-plugin",
"version": "1.0.4",
"description": "Import your BookFusion (https://www.bookfusion.com) highlights into Obsidian (https://obsidian.md).",
"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",
"lint": "ts-standard",
"lint:fix": "ts-standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BookFusion/obsidian-plugin.git"
},
"author": "BookFusion",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/BookFusion/obsidian-plugin/issues"
},
"homepage": "https://github.com/BookFusion/obsidian-plugin#readme",
"devDependencies": {
"@types/node": "^14.18.63",
"builtin-modules": "^3.3.0",
"esbuild": "^0.19.5",
"obsidian": "latest",
"ts-standard": "^12.0.2",
"tslib": "^2.6.2",
"typescript": "^5.1.6"
},
"volta": {
"node": "16.20.2"
}
}