forked from allmaps/allmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
59
60
61
{
"name": "@allmaps/annotation",
"version": "1.0.0-beta.12",
"author": {
"name": "Bert Spaan",
"email": "[email protected]",
"url": "https://bertspaan.nl"
},
"description": "Functions for generating and parsing IIIF georeference annotations",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"unpkg": "./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/annotation"
},
"homepage": "https://allmaps.org",
"keywords": [
"iiif",
"georeference",
"map"
],
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"preversion": "npm test",
"test": "mocha && npm run lint && npm run examples",
"pretest": "npm run build",
"lint": "eslint dist test",
"documentation": "documentation readme index.js --config documentation.yml --section=API",
"examples": "cp test/input/map.nagwjzJ6qURmPEHV.json examples/map.example.json && cp test/input/annotation.i7YhWu1sFExRzm3d.json examples/annotation.example.json"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"chai": "^4.3.6",
"chai-shallow-deep-equal": "^1.4.6",
"documentation": "^14.0.0",
"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"
}
}