@lindas/trifid-plugin-iiif 2.0.0 → 7.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +39 -39
  3. package/package.json +43 -44
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @zazuko/trifid-plugin-iiif
2
2
 
3
+ ## 2.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 48d1042: Republish all lindas-trifid packages to npm with LINDAS namespace
8
+
3
9
  ## 2.0.0
4
10
 
5
11
  ### Major Changes
package/README.md CHANGED
@@ -1,39 +1,39 @@
1
- # IIIF plugin for Trifid
2
-
3
- > [!IMPORTANT]
4
- > This plugin is not used anymore and some things might be broken.
5
- > If you have a specific use case for this plugin, please open an issue.
6
-
7
- A trifid plugin to provide data about image and audio/visual files.
8
-
9
- It provides data using the [schema](https://iiif.io/api/presentation/3/context.json) defined by the [International Image Interoperability Framework](https://iiif.io)
10
-
11
- ## Installation
12
-
13
- To install the plugin, run:
14
-
15
- ```sh
16
- npm install @zazuko/trifid-plugin-iiif
17
- ```
18
-
19
- ## Configuration
20
-
21
- This is how you can configure the plugin:
22
-
23
- ```yaml
24
- plugins:
25
- # […] your other plugins
26
- iiif:
27
- module: "@zazuko/trifid-plugin-iiif"
28
- paths:
29
- - /iiif/
30
- config:
31
- uriPrefix: https://website
32
- endpointUrl: https://website/query
33
- endpointUser: optional
34
- endpointPassword: optional
35
- ```
36
-
37
- Then, http://localhost:8080/data/1 will use the URI: <https://website/data/1> to fetch all the related data from the https://website/query SPARQL endpoint.
38
-
39
- If no `uriPrefix` is given, the plugin will accept a `uri` query parameter.
1
+ # IIIF plugin for Trifid
2
+
3
+ > [!IMPORTANT]
4
+ > This plugin is not used anymore and some things might be broken.
5
+ > If you have a specific use case for this plugin, please open an issue.
6
+
7
+ A trifid plugin to provide data about image and audio/visual files.
8
+
9
+ It provides data using the [schema](https://iiif.io/api/presentation/3/context.json) defined by the [International Image Interoperability Framework](https://iiif.io)
10
+
11
+ ## Installation
12
+
13
+ To install the plugin, run:
14
+
15
+ ```sh
16
+ npm install @zazuko/trifid-plugin-iiif
17
+ ```
18
+
19
+ ## Configuration
20
+
21
+ This is how you can configure the plugin:
22
+
23
+ ```yaml
24
+ plugins:
25
+ # […] your other plugins
26
+ iiif:
27
+ module: "@zazuko/trifid-plugin-iiif"
28
+ paths:
29
+ - /iiif/
30
+ config:
31
+ uriPrefix: https://website
32
+ endpointUrl: https://website/query
33
+ endpointUser: optional
34
+ endpointPassword: optional
35
+ ```
36
+
37
+ Then, http://localhost:8080/data/1 will use the URI: <https://website/data/1> to fetch all the related data from the https://website/query SPARQL endpoint.
38
+
39
+ If no `uriPrefix` is given, the plugin will accept a `uri` query parameter.
package/package.json CHANGED
@@ -1,44 +1,43 @@
1
- {
2
- "name": "@lindas/trifid-plugin-iiif",
3
- "version": "2.0.0",
4
- "type": "module",
5
- "description": "Trifid plugin to handle IIIF data",
6
- "license": "Apache-2.0",
7
- "homepage": "https://github.com/SwissFederalArchives/lindas-trifid",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/SwissFederalArchives/lindas-trifid.git",
11
- "directory": "packages/iiif"
12
- },
13
- "bugs": {
14
- "url": "https://github.com/zazuko/trifid/issues"
15
- },
16
- "scripts": {
17
- "test": "c8 --all --reporter=lcovonly --reporter=text node --test **/*.test.js"
18
- },
19
- "author": {
20
- "name": "Swiss Federal Archives / Lindas",
21
- "url": "https://www.bar.admin.ch/"
22
- },
23
- "keywords": [
24
- "trifid",
25
- "trifid-plugin",
26
- "iiif"
27
- ],
28
- "dependencies": {
29
- "@tpluscode/rdf-string": "^1.3.3",
30
- "jsonld": "^8.3.3",
31
- "sparql-http-client": "^3.0.1",
32
- "through2": "^4.0.2",
33
- "@lindas/env": "^3.0.1"
34
- },
35
- "devDependencies": {
36
- "@types/jsonld": "^1.5.15",
37
- "c8": "^10.1.3",
38
- "@lindas/trifid-core": "^6.0.0"
39
- },
40
- "publishConfig": {
41
- "access": "public",
42
- "provenance": true
43
- }
44
- }
1
+ {
2
+ "name": "@lindas/trifid-plugin-iiif",
3
+ "version": "7.0.2",
4
+ "type": "module",
5
+ "description": "Trifid plugin to handle IIIF data",
6
+ "license": "Apache-2.0",
7
+ "homepage": "https://github.com/SwissFederalArchives/lindas-trifid",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/SwissFederalArchives/lindas-trifid.git",
11
+ "directory": "packages/iiif"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/zazuko/trifid/issues"
15
+ },
16
+ "scripts": {
17
+ "test": "c8 --all --reporter=lcovonly --reporter=text node --test **/*.test.js"
18
+ },
19
+ "author": {
20
+ "name": "Swiss Federal Archives / Lindas",
21
+ "url": "https://www.bar.admin.ch/"
22
+ },
23
+ "keywords": [
24
+ "trifid",
25
+ "trifid-plugin",
26
+ "iiif"
27
+ ],
28
+ "dependencies": {
29
+ "@tpluscode/rdf-string": "^1.3.3",
30
+ "jsonld": "^8.3.3",
31
+ "sparql-http-client": "^3.0.1",
32
+ "through2": "^4.0.2",
33
+ "@lindas/env": "^3.0.1"
34
+ },
35
+ "devDependencies": {
36
+ "@types/jsonld": "^1.5.15",
37
+ "c8": "^10.1.3",
38
+ "@lindas/trifid-core": "^7.0.2"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ }
43
+ }