-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.65 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
{
"name": "@datastax/langflow-client",
"version": "0.1.1",
"description": "A JavaScript client for the Langflow API",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./consts": {
"import": "./dist/consts.js",
"default": "./dist/consts.js"
},
"./errors": {
"import": "./dist/errors.js",
"default": "./dist/errors.js"
},
"./flow": {
"import": "./dist/flow.js",
"default": "./dist/flow.js"
},
"./flow_response": {
"import": "./dist/flow_response.js",
"default": "./dist/flow_response.js"
},
"./upload_response": {
"import": "./dist/upload_response.js",
"default": "./dist/upload_response.js"
}
},
"scripts": {
"test": "tsx --test ./src/test/**/*.test.ts",
"test:coverage": "c8 -r html -r text npm test",
"build": "npm run build:clean && tsc",
"build:clean": "rm -rf dist",
"build:check": "tsc --noEmit",
"build:watch": "tsc --watch",
"lint": "eslint ./src",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src"
},
"keywords": [
"langflow",
"datastax"
],
"author": "Phil Nash <[email protected]> (https://datastax.com/devs)",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"c8": "^10.1.3",
"eslint": "^9.16.0",
"globals": "^15.14.0",
"prettier": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"mime": "^4.0.6",
"undici": "^7.2.1"
}
}