-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.04 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
{
"name": "ldes-client",
"description": "This package provides common tooling to work with LDESes.",
"version": "0.1.6",
"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",
"prepublishOnly": "npm run build"
},
"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": "^13.1.0",
"debug": "^4.4.0",
"extract-cbd-shape": "^0.1.12",
"heap-js": "^2.6.0",
"n3": "^1.24.0",
"rdf-data-factory": "^2.0.2",
"rdf-dereference": "^4.0.0",
"rdf-lens": "^1.3.5",
"rdf-stores": "^2.1.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@fastify/static": "^8.1.1",
"@rdfc/js-runner": "^1.0.0",
"@rdfjs/types": "^2.0.1",
"@types/n3": "^1.21.1",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vitest/coverage-v8": "^3.0.7",
"benchmark": "^2.1.4",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"fastify": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.3",
"tsc-alias": "^1.8.11",
"typescript": "^5.8.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
},
"browser": {
"fs": false,
"fs/promises": false,
"path": false,
"os": false
},
"optionalDependencies": {
"@esbuild/darwin-arm64": "^0.25.0",
"@rollup/rollup-linux-x64-gnu": "^4.34.9"
}
}