-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.59 KB
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
{
"name": "@trustgraph/client",
"version": "1.7.2",
"description": "TypeScript client for TrustGraph",
"type": "module",
"main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"prettify": "prettier --write .",
"prepare": "npm run build"
},
"keywords": [
"trustgraph",
"websocket",
"typescript",
"client"
],
"author": "KnowNext Limited",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.37.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@vitest/ui": "^3.2.4",
"eslint": "^9.39.3",
"globals": "^16.4.0",
"happy-dom": "^20.0.10",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"rollup": "^4.9.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.4"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trustgraph-ai/trustgraph-client.git"
},
"bugs": {
"url": "https://github.com/trustgraph-ai/trustgraph-client/issues"
},
"homepage": "https://github.com/trustgraph-ai/trustgraph-client#readme"
}