-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) 路 3.15 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) 路 3.15 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "clarifai-nodejs",
"version": "0.4.0",
"description": "The official Clarifai Node.js SDK",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"exports": {
"import": "./dist/module.js",
"require": "./dist/main.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.16.4",
"@parcel/transformer-typescript-types": "^2.16.4",
"@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": "^3.1.2",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"parcel": "^2.16.4",
"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": "^3.1.2"
},
"dependencies": {
"@grpc/grpc-js": "^1.10.1",
"@grpc/proto-loader": "^0.7.10",
"@llamaindex/core": "^0.6.23",
"@llamaindex/readers": "^3.1.22",
"async": "^3.2.5",
"axios": "^1.16.0",
"chalk": "^5.3.0",
"clarifai-nodejs-grpc": "^11.6.6",
"csv-parse": "^5.5.5",
"from-protobuf-object": "^1.0.3",
"google-protobuf": "^3.21.2",
"js-yaml": "^4.1.1",
"lodash": "^4.18.0",
"safe-flat": "^2.1.0",
"tmp": "^0.2.4",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"overrides": {
"form-data": "^4.0.4",
"handlebars": "^4.7.9",
"@xmldom/xmldom": "^0.8.13",
"protobufjs@6": "^6.11.5",
"protobufjs@7": "^7.5.5",
"vite": "^6.4.2",
"lodash-es": "^4.18.0",
"postcss": "^8.5.10",
"picomatch@2": "^2.3.2",
"flatted": "^3.4.2",
"minimatch@9": "^9.0.7",
"glob@10": "^10.5.0",
"mammoth": "^1.11.0",
"rollup@4": "^4.59.0",
"@parcel/reporter-dev-server": "^2.16.4",
"tar": "^7.5.11"
}
}