-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
116 lines (116 loc) · 3.8 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "bedrock-engineer",
"version": "1.0.0",
"description": "An AI assistant of software development tasks. This tool combines the capabilities of a large language model with practical file system operations, web search functionality.",
"main": "./out/main/index.js",
"author": "[email protected]",
"homepage": "https://electron-vite.org",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"test": "jest --config jest.config.js",
"test:watch": "jest --watchAll",
"test:integration": "jest --config jest.integration.config.js",
"test:integration:watch": "jest --config jest.integration.config.js --watchAll",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac --universal",
"build:linux": "electron-vite build && electron-builder --linux"
},
"dependencies": {
"@aws-sdk/client-bedrock": "3.632.0",
"@aws-sdk/client-bedrock-agent-runtime": "3.642.0",
"@aws-sdk/client-bedrock-runtime": "3.632.0",
"@aws-sdk/client-sts": "3.699.0",
"@codemirror/autocomplete": "6.18.0",
"@codesandbox/sandpack-react": "2.18.3",
"@electron-toolkit/preload": "3.0.1",
"@electron-toolkit/utils": "3.0.0",
"@iconify-json/logos": "1.2.0",
"@monaco-editor/react": "4.6.0",
"@reactour/tour": "3.7.0",
"@tshepomgaga/aws-sfn-graph": "0.0.6",
"cors": "2.8.5",
"diff": "6.0.0",
"electron-store": "8.2.0",
"electron-updater": "^6.3.9",
"express": "^4.21.2",
"flowbite-react": "0.10.1",
"framer-motion": "11.3.29",
"i18next": "23.15.0",
"lottie-react": "2.4.0",
"mermaid": "11.1.1",
"node-cache": "5.1.2",
"react-cmdk": "1.3.9",
"react-hot-toast": "2.4.1",
"react-i18next": "15.0.1",
"react-icons": "5.3.0",
"react-markdown": "9.0.1",
"react-resizable-panels": "^2.1.7",
"react-router": "6.26.1",
"react-router-dom": "6.26.1",
"react-syntax-highlighter": "15.5.0",
"remark-gfm": "4.0.0",
"vite-plugin-svgr": "4.2.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "2.0.0",
"@electron-toolkit/eslint-config-ts": "2.0.0",
"@electron-toolkit/tsconfig": "1.0.1",
"@types/diff": "5.2.3",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "20.14.8",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.20",
"dotenv": "^16.4.5",
"electron": "31.0.2",
"electron-builder": "24.13.3",
"electron-vite": "2.3.0",
"eslint": "8.57.0",
"eslint-plugin-react": "7.34.3",
"jest": "29.7.0",
"postcss": "8.4.41",
"prettier": "3.3.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.10",
"ts-jest": "29.2.4",
"typescript": "5.5.2",
"vite": "^5.4.11"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.24.0",
"@rollup/rollup-win32-x64-msvc": "4.20.0",
"dmg-license": "1.0.11"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json"
}
]
}
}
}