-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "@vectara/stream-query-client",
"version": "4.2.0",
"description": "A utility to conveniently send and receive data to/from Vectara's streaming query API.",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage --forceExit",
"build": "npm run clean && node build.js && tsc --emitDeclarationOnly --outDir lib",
"clean": "rimraf lib",
"docs": "npm install && npm run build && npm install --prefix docs && npm run docs --prefix docs"
},
"author": {
"name": "Vectara, Inc.",
"url": "https://www.vectara.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/vectara/stream-query-client"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"chokidar": "^3.5.3",
"esbuild": "^0.20.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"live-server": "^1.2.2",
"msw": "^2.2.14",
"react": ">= 17.0.2",
"react-dom": ">= 17.0.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"msw": {
"workerDirectory": [
"docs/public"
]
}
}