-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "superluminal-react",
"version": "1.1.0",
"description": "The official front-end React component for the Superluminal API.",
"keywords": [
"dashboard",
"ai",
"copilot",
"api",
"code",
"interpreter",
"python",
"typescript",
"data",
"llama",
"chatgpt"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/superluminalengineering/superluminal-react.git"
},
"author": "Superluminal Engineering, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/superluminalengineering/superluminal-react/issues"
},
"homepage": "https://superluminal.dev",
"dependencies": {
"plotly.js": "^2.24.3",
"react": "^18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "^18.2.0",
"react-plotly.js": "^2.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-plotly.js": "^2.6.0",
"rollup": "^3.26.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.35.0",
"typescript": "^5.1.6"
}
}