-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
55 lines (55 loc) · 1.18 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
{
"name": "trifid-handler-fetch",
"description": "Fetch handler for Trifid",
"type": "module",
"version": "3.3.4",
"license": "Apache-2.0",
"main": "index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/zazuko/trifid",
"repository": {
"type": "git",
"url": "https://github.com/zazuko/trifid.git",
"directory": "packages/handler-fetch"
},
"bugs": {
"url": "https://github.com/zazuko/trifid/issues"
},
"files": [
"dist",
"lib",
"index.js",
"CHANGELOG.md"
],
"scripts": {
"test": "c8 --all --reporter lcovonly --reporter text node --test **/*.test.js",
"prebuild": "rimraf dist/",
"build": "tsc",
"prepack": "npm run build"
},
"author": {
"name": "Zazuko GmbH",
"url": "https://zazuko.com/"
},
"keywords": [
"trifid",
"trifid-plugin",
"handler-fetch"
],
"dependencies": {
"oxigraph": "^0.4.7",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/node": "^22.12.0",
"@types/uuid": "^10.0.0",
"c8": "^10.1.3",
"rimraf": "^6.0.1",
"trifid-core": "^5.1.0",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}