forked from joshuahamsa/Obsidian-Biblehub-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "obsidian-biblehub-lexicon-importer",
"version": "0.1.0",
"description": "Import BibleHub Strong's lexicon entries into graph-ready notes and optionally crawl typed links.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"typecheck": "tsc -noEmit -skipLibCheck",
"lint": "eslint src --ext .ts",
"format": "prettier --write src",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:specific": "jest --testNamePattern"
},
"keywords": [
"obsidian",
"plugin",
"bible",
"lexicon",
"strongs"
],
"author": "You",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"builtin-modules": "3.2.0",
"esbuild": "0.13.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "latest",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"tslib": "2.3.1",
"typescript": "4.4.4"
}
}