forked from foxprogs/bible-crossref
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "@texttree/bible-crossref",
"version": "0.0.5",
"license": "MIT",
"private": false,
"author": "TextTree.org",
"description": "",
"keywords": [
"ocl",
"cross reference",
"bible"
],
"url": "https://github.com/texttree/bible-crossref",
"homepage": "https://github.com/texttree/bible-crossref#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/texttree/bible-crossref.git"
},
"bugs": {
"url": "https://github.com/texttree/bible-crossref/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/@texttree/bible-crossref.umd.cjs",
"module": "./dist/@texttree/bible-crossref.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext .js",
"format": "prettier . --write",
"preview": "vite preview"
},
"exports": {
".": {
"import": "./dist/@texttree/bible-crossref.js",
"require": "./dist/@texttree/bible-crossref.umd.cjs"
}
},
"devDependencies": {
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"vite": "^4.2.1"
}
}