-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.89 KB
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
68
69
70
71
{
"name": "tropy-plugin-iiif",
"productName": "IIIF",
"version": "2.0.0",
"description": "Import IIIF manifests",
"icon": "icon.svg",
"main": "index.js",
"scripts": {
"test": "electron-mocha --no-sandbox --renderer test",
"lint": "eslint --color src test",
"build": "rollup -c rollup.config.mjs",
"watch": "rollup -c rollup.config.mjs -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tropy/tropy-plugin-iiif.git"
},
"keywords": [
"tropy",
"plugin",
"iiif",
"iiif-manifest"
],
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/tropy/tropy-plugin-iiif/issues"
},
"homepage": "https://github.com/tropy/tropy-plugin-iiif#readme",
"hooks": {
"import": true
},
"options": [
{
"field": "itemTemplate",
"label": "Item template",
"placeholder": "Select Template (Optional)",
"type": "template",
"hint": "The template determines how to import the IIIF manifest metadata section"
},
{
"field": "photoTemplate",
"label": "Photo template",
"placeholder": "Select Template (Optional)",
"type": "template",
"hint": "The template determines how to import the IIIF manifest metadata section"
},
{
"field": "yearOnly",
"label": "Identify year only dates",
"type": "bool",
"hint": "Strip month, day and time from dates that match YYYY-01-01T00:00:00 (likely year-only values)"
}
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"electron": "^41.0.0",
"electron-mocha": "^13.0.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"jsonld": "^9.0.0",
"rollup": "^4.59.0",
"rollup-plugin-license": "^3.0.1"
},
"dependencies": {
"iiif-builder": "^2.0.0"
}
}