-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "flowise-sdk",
"version": "1.0.9",
"description": "Flowise SDK for streaming API responses.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/examples/example.js",
"test": "jest",
"lint": "eslint \"**/*.{ts,tsx}\" --fix",
"prepare": "npm run build"
},
"keywords": [
"flowise",
"sdk",
"typescript"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.5.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}