-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.68 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
{
"name": "@rdfc/js-runner",
"version": "0.2.2",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"description": "",
"main": "./dist/index.js",
"files": [
"./dist/**/*",
"./ontology.ttl",
"./processor/**/*",
"./channels/**/*"
],
"types": "./dist/index.d.ts",
"bin": {
"js-runner": "bin/bundle.mjs"
},
"scripts": {
"build": "tsc && tsc-alias",
"watch": "tsc -w",
"test": "vitest run --coverage --coverage.include src",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@rdfjs/types": "^1.1.0",
"@treecg/types": "^0.4.6",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"debug": "^4.3.5",
"kafkajs": "^2.2.4",
"n3": "^1.17.4",
"rdf-lens": "^1.2.8",
"stream-to-array": "^2.3.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@knighted/duel": "^1.0.8",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/debug": "^4.1.12",
"@types/n3": "^1.16.4",
"@types/node": "^20.14.9",
"@types/ws": "^8.5.10",
"rollup": "^4.18.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitest/coverage-v8": "^1.6.0",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}