forked from allmaps/allmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.45 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
62
63
64
65
66
67
{
"name": "@allmaps/cli",
"version": "1.0.0-beta.9",
"author": {
"name": "Bert Spaan",
"email": "[email protected]",
"url": "https://bertspaan.nl"
},
"description": "Allmaps CLI",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"unpkg": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"bin": {
"allmaps": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/allmaps/allmaps.git",
"directory": "apps/cli"
},
"homepage": "https://allmaps.org",
"scripts": {
"watch": "tsc --watch",
"build": "tsc && chmod +x dist/index.js",
"test": "mocha && npm run lint",
"pretest": "npm run build",
"lint": "eslint dist test"
},
"keywords": [
"allmaps",
"cli",
"iiif",
"georeference",
"map"
],
"license": "GPL-3.0-or-later",
"dependencies": {
"@allmaps/annotation": "^1.0.0-beta.12",
"@allmaps/iiif-parser": "^1.0.0-beta.22",
"@allmaps/transform": "^1.0.0-beta.12",
"stream-json": "^1.7.4",
"svg-parser": "^2.0.4",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@types/stream-json": "^1.7.2",
"@types/svg-parser": "^2.0.3",
"@types/yargs": "^17.0.12",
"chai": "^4.3.6",
"eslint": "^8.35.0",
"mocha": "^8.4.0",
"zod": "^3.20.6"
}
}