-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 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
{
"name": "sparkengine",
"version": "1.2.12",
"description": "A library to interact with Spark Engine API and build chatbots.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && copy types\\index.d.ts dist\\ && xcopy /E /I src\\styles dist\\styles && copy src\\styles.css dist\\",
"dev": "next dev",
"start": "next start",
"build:next": "next build"
},
"keywords": [
"sparkengine",
"AI",
"multi-agent",
"completion",
"chatbot",
"sdk",
"typescript",
"npm"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@emotion/styled": "^11.13.0",
"@mantine/core": "7.10.0",
"@mantine/hooks": "7.10.0",
"@tabler/icons-react": "^2.2.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"axios": "^1.4.0",
"emotion": "^11.0.0",
"groq-sdk": "^0.7.0",
"next": "^14.2.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^8.0.0",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@types/react-syntax-highlighter": "^15.5.13",
"typescript": "^4.0.0"
}
}