forked from weaviate/typescript-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.19 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
{
"name": "weaviate-ts-client",
"version": "1.0.0-beta.2",
"description": "TypeScript client for Weaviate",
"main": "dist/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"files": [
"/dist/index.js",
"/dist/index.js.map",
"/types/**/*.d.ts"
],
"scripts": {
"test": "tsc -noEmit -p tsconfig-test.json && jest --useStderr --runInBand --detectOpenHandles --forceExit",
"build": "npm run lint && tsc --emitDeclarationOnly && ./build.js",
"prepack": "npm run build",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write --no-error-on-unmatched-pattern '**/*.{ts,js}' '!dist/**' '!types/**'",
"format:check": "prettier --check --no-error-on-unmatched-pattern '**/*.{ts,js}' '!dist/**' '!types/**'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weaviate/typescript-client.git"
},
"keywords": [
"weaviate"
],
"author": "Weaviate",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/weaviate/typescript-client/issues"
},
"homepage": "https://github.com/weaviate/typescript-client#readme",
"dependencies": {
"graphql-request": "^5.1.0",
"isomorphic-fetch": "^3.0.0",
"tar": "^6.1.13"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.7",
"@curveball/bodyparser": "^0.5.0",
"@curveball/core": "^0.20.0",
"@rollup/plugin-babel": "^5.3.1",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@types/tar": "^6.1.4",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"babel-jest": "^29.4.3",
"esbuild": "^0.17.10",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{ts,js}": [
"npm run format:check",
"npm run lint -- --cache"
]
}
}