-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
39
40
41
42
43
44
45
46
47
{
"name": "annosearch",
"version": "0.2.8",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc && node copy-files.mjs",
"start": "ts-node src/index.ts",
"test": "jest"
},
"bin": {
"annosearch": "dist/index.js"
},
"keywords": [
"IIIF",
"Search",
"W3C web annotation",
"IIIF Content Search API"
],
"author": "John P. T. Moore",
"license": "MIT",
"description": "W3C web annotation search using the IIIF content search API",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/pino": "^7.0.4",
"@types/yargs": "^17.0.33",
"typescript": "^5.7.2"
},
"dependencies": {
"@types/jest": "^29.5.14",
"axios": "^1.7.9",
"express": "^4.21.2",
"jest": "^29.7.0",
"maniiifest": "^1.3.4",
"nock": "^13.5.6",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"pino-pretty": "^13.0.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"yaml": "^2.6.1",
"yargs": "^17.7.2"
}
}