-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "@zazuko/trifid-entity-renderer",
"version": "1.4.1",
"type": "module",
"description": "Renders a RDF entity in Trifid",
"main": "index.js",
"scripts": {
"example-instance": "node ./examples/run-instance.js",
"test": "c8 --all --reporter lcovonly --reporter text node --test **/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/zazuko/trifid.git",
"directory": "packages/entity-renderer"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zazuko/trifid/issues"
},
"homepage": "https://github.com/zazuko/trifid#readme",
"author": {
"name": "Zazuko GmbH",
"url": "https://zazuko.com/"
},
"keywords": [
"trifid",
"trifid-plugin",
"entity-renderer"
],
"dependencies": {
"@lit-labs/ssr": "^3.1.9",
"@rdfjs/formats-common": "^3.1.0",
"@rdfjs/to-ntriples": "^3.0.1",
"@zazuko/env": "^2.4.2",
"@zazuko/prefixes": "^2.1.0",
"@zazuko/rdf-entity-webcomponent": "^0.7.7",
"lit": "^3.2.1",
"mimeparse": "^0.1.4",
"p-queue": "^8.0.1",
"trifid-core": "^5.1.0"
},
"devDependencies": {
"@rdfjs/types": "^1.1.2",
"c8": "^10.1.2",
"trifid-handler-fetch": "^3.3.3",
"trifid-plugin-yasgui": "^3.3.0"
},
"files": [
"index.js",
"renderer",
"views"
],
"publishConfig": {
"access": "public",
"provenance": true
}
}