-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.53 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
82
83
{
"name": "clarifai-nodejs",
"version": "0.0.3",
"description": "The official Clarifai Node.js SDK",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"test": "vitest",
"test:unit": "vitest unit.test",
"test:integration": "vitest run integration.test",
"coverage": "vitest run --coverage",
"lint:fix": "eslint . --fix --ignore-path .gitignore",
"lint": "tsc --noEmit --pretty && eslint . --ignore-path .gitignore",
"watch": "parcel watch",
"build": "parcel build",
"generate-docs": "typedoc --plugin typedoc-plugin-markdown --plugin typedoc-plugin-no-inherit --plugin ./typedoc-plugins/expand-object.js --plugin ./typedoc-plugins/include-example --out docs src/"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Clarifai/clarifai-nodejs.git"
},
"keywords": [
"clarifai",
"clarifai-nodejs",
"clarifai-typescript"
],
"author": "Clarifai Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Clarifai/clarifai-nodejs/issues"
},
"homepage": "https://github.com/Clarifai/clarifai-nodejs#readme",
"devDependencies": {
"@parcel/packager-ts": "^2.11.0",
"@parcel/transformer-typescript-types": "^2.11.0",
"@types/async": "^3.2.24",
"@types/google-protobuf": "^3.15.12",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.16",
"@types/tmp": "^0.2.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.3.1",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"parcel": "^2.11.0",
"prettier": "3.2.4",
"typedoc": "^0.25.12",
"typedoc-plugin-include-example": "^1.2.0",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"dependencies": {
"@grpc/grpc-js": "^1.10.1",
"@grpc/proto-loader": "^0.7.10",
"async": "^3.2.5",
"axios": "^1.6.8",
"chalk": "^5.3.0",
"clarifai-nodejs-grpc": "^10.3.2",
"csv-parse": "^5.5.5",
"from-protobuf-object": "^1.0.2",
"google-protobuf": "^3.21.2",
"js-yaml": "^4.1.0",
"llamaindex": "^0.2.13",
"lodash": "^4.17.21",
"safe-flat": "^2.1.0",
"tmp": "^0.2.3",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
}
}