forked from allmaps/allmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.19 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@allmaps/iiif-parser",
"version": "1.0.0-beta.22",
"author": {
"name": "Bert Spaan",
"email": "[email protected]",
"url": "https://bertspaan.nl"
},
"description": "Allmaps IIIF parser",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/allmaps/allmaps.git",
"directory": "packages/iiif-parser"
},
"homepage": "https://allmaps.org",
"keywords": [
"allmaps",
"iiif",
"parser"
],
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"preversion": "npm test",
"test": "mocha && npm run lint",
"pretest": "npm run build",
"lint": "eslint dist test"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/node": "^18.14.2",
"chai": "^4.3.6",
"chai-shallow-deep-equal": "^1.4.6",
"eslint": "^8.35.0",
"mocha": "^8.4.0",
"typescript": "^4.9.5"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"dependencies": {
"zod": "^3.20.6"
}
}