-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
88 lines (88 loc) · 2.1 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "trifid-core",
"description": "Trifid Core",
"type": "module",
"version": "5.1.0",
"license": "Apache-2.0",
"homepage": "https://github.com/zazuko/trifid",
"repository": {
"type": "git",
"url": "https://github.com/zazuko/trifid.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/zazuko/trifid/issues"
},
"scripts": {
"test": "c8 --all --reporter=lcov --reporter=text node --test test/**.test.js test/**/*.test.js",
"watch": "nodemon server.js",
"typings": "tsc",
"clean": "rimraf *.tgz dist/",
"prepack": "npm run clean && npm run typings",
"postpublish": "npm run clean",
"release": "changeset publish"
},
"files": [
"dist/",
"lib/",
"plugins/",
"static/",
"views/",
"config.yaml",
"config2.json",
"logo.svg",
"index.js",
"server.js",
"CHANGELOG.md"
],
"main": "index.js",
"types": "./dist/index.d.ts",
"bin": {
"trifid-core": "./server.js"
},
"author": {
"name": "Zazuko GmbH",
"url": "https://zazuko.com/"
},
"keywords": [
"trifid",
"trifid-plugin",
"core"
],
"dependencies": {
"@fastify/accepts": "^5.0.2",
"@fastify/compress": "^8.0.1",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^10.0.2",
"@fastify/formbody": "^8.0.2",
"@fastify/static": "^8.0.4",
"@fontsource/playfair-display": "^5.1.1",
"@fontsource/roboto": "^5.1.1",
"@rdfjs-elements/formats-pretty": "^0.6.8",
"@types/sparql-http-client": "^3.0.5",
"ajv": "^8.17.1",
"commander": "^13.0.0",
"fastify": "^5.2.1",
"handlebars": "^4.7.8",
"import-meta-resolve": "^4.1.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"sparql-http-client": "^3.0.1",
"string-replace-stream": "^0.0.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@rdfjs/types": "^2.0.1",
"@types/node": "^22.10.7",
"c8": "^10.1.3",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}