-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
36
37
38
{
"name": "@cu-mkp/editioncrafter-cli",
"type": "module",
"version": "1.2.0",
"description": "This is the command line tool to take a TEI XML file and turn it into a IIIF Manifest and the necessary Web Annotations to display the text in EditionCrafter.",
"author": "Nick Laiacona <[email protected]>",
"license": "MIT",
"homepage": "https://cu-mkp.github.io/editioncrafter/",
"repository": "https://github.com/cu-mkp/editioncrafter-cli.git",
"main": "src/index.js",
"bin": {
"editioncrafter": "./editioncrafter.js"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"bump-version": "genversion --esm version.js",
"prepublishOnly": "npm run bump-version"
},
"dependencies": {
"@ungap/structured-clone": "^1.2.0",
"axios": "^1.4.0",
"better-sqlite3": "^11.6.0",
"csv-parse": "^5.5.6",
"genversion": "^3.2.0",
"jsdom": "^21.1.2",
"marked": "^14.0.0",
"marked-terminal": "^7.2.1",
"probe-image-size": "^7.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}