-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.43 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.43 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
{
"name": "flowtestai-app",
"productName": "FlowTestAI",
"version": "1.2.0",
"homepage": "https://github.com/FlowTestAI/FlowTest/tree/main",
"description": "GenAI powered OpenSource IDE for API first workflows",
"main": "electron-main.js",
"bugs": {
"url": "https://github.com/FlowTestAI/FlowTest/issues"
},
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"start": "electron .",
"test": "jest",
"pack": "NODE_ENV=production electron-builder --dir",
"dist:mac": "NODE_ENV=production electron-builder --mac",
"dist:win": "SET NODE_ENV=production & electron-builder --win"
},
"author": "Sajal Jain <jsajal1993@gmail.com>",
"license": "MIT",
"devDependencies": {
"@electron/notarize": "^2.3.0",
"electron": "^29.0.0",
"electron-builder": "^24.13.3",
"jest": "^29.7.0"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-bedrock": "^3.583.0",
"@aws-sdk/client-bedrock-runtime": "^3.583.0",
"@aws-sdk/credential-provider-node": "^3.583.0",
"@aws-sdk/types": "^3.577.0",
"@google/generative-ai": "^0.16.0",
"@langchain/community": "^0.2.19",
"@langchain/google-genai": "^0.0.25",
"@smithy/eventstream-codec": "^3.0.0",
"@smithy/protocol-http": "^4.0.0",
"@smithy/signature-v4": "^3.0.0",
"@smithy/util-utf8": "^3.0.0",
"axios": "^1.8.2",
"axios-retry": "^4.4.0",
"chokidar": "^3.6.0",
"dotenv": "^16.4.5",
"electron-store": "^8.1.0",
"flatted": "^3.3.1",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"json-refs": "^3.0.15",
"langchain": "^0.1.28",
"lodash": "^4.17.21",
"openai": "^4.29.1",
"path": "^0.12.7",
"uuid": "^9.0.1"
},
"build": {
"appId": "com.flowtestai.app",
"productName": "FlowTestAI",
"directories": {
"buildResources": "resources",
"output": "dist"
},
"files": [
"**/*"
],
"afterSign": "notarize.js",
"win": {
"target": "nsis"
},
"mac": {
"target": {
"target": "default",
"arch": [
"x64",
"arm64"
]
},
"category": "public.app-category.developer-tools",
"identity": "Sajal Jain (Z25C545DT5)",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"icon": "assets/MyIcon.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
}
}