-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.94 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
{
"name": "ldes-client",
"description": "This package provides common tooling to work with LDESes.",
"version": "0.0.15",
"main": "dist/lib/client.js",
"exports": {
"import": "./dist/lib/client.js",
"require": "./dist/lib/client.cjs"
},
"type": "module",
"bin": {
"ldes-client": "dist/bin/cli.js"
},
"scripts": {
"build": "tsc && tsc-alias && rollup ./dist/lib/client.js --file ./dist/lib/client.cjs --format cjs",
"test": "vitest run --coverage --coverage.include lib"
},
"files": [
"dist/**/*",
"shapes/**/*",
"dist/bin/**/*",
"processor.ttl"
],
"directories": {
"lib": "lib",
"bin": "bin",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/rdf-connect/ldes-client"
},
"author": "Arthur Vercruysse",
"license": "MIT",
"dependencies": {
"@treecg/types": "^0.4.6",
"@types/debug": "^4.1.12",
"commander": "^12.1.0",
"debug": "^4.3.7",
"extract-cbd-shape": "^0.1.8",
"heap-js": "^2.5.0",
"n3": "^1.22.3",
"rdf-data-factory": "^1.1.2",
"rdf-dereference": "^3.0.0",
"rdf-js": "^4.0.2",
"rdf-lens": "^1.3.0",
"rdf-stores": "^1.0.0",
"winston": "^3.16.0"
},
"devDependencies": {
"@fastify/static": "^7.0.4",
"@rdfc/js-runner": "^1.0.0-alpha.0",
"@rdfjs/types": "^1.1.2",
"@types/n3": "^1.21.1",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitest/coverage-v8": "^2.1.4",
"benchmark": "^2.1.4",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"fastify": "^4.28.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.4"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}