forked from FlowiseAI/FlowiseChatEmbed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.1 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
{
"name": "flowise-embed",
"version": "2.0.6",
"description": "Javascript library to display flowise chatbot on your website",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rollup --watch --config rollup.config.js",
"build": "rollup --config rollup.config.js",
"lint": "eslint \"src/**/*.ts*\"",
"lint-fix": "eslint --fix \"src/**/*.ts*\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.22.1",
"@microsoft/fetch-event-source": "^2.0.1",
"@ts-stack/markdown": "^1.4.0",
"device-detector-js": "^3.0.3",
"lodash": "^4.17.21",
"prettier": "^3.1.0",
"solid-element": "1.7.0",
"solid-js": "1.7.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/preset-typescript": "7.21.4",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.4.0",
"@rollup/plugin-typescript": "11.0.0",
"@tailwindcss/typography": "^0.5.10",
"@types/lodash": "^4.14.195",
"@types/node": "18.15.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"autoprefixer": "10.4.14",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-solid": "1.7.1",
"eslint": "^8.24.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-solid": "0.12.0",
"husky": "^8.0.0",
"postcss": "8.4.21",
"react": "18.2.0",
"rollup": "3.23.0",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-serve": "2.0.2",
"rollup-plugin-typescript-paths": "1.4.0",
"rollup-plugin-uglify": "^6.0.4",
"tailwindcss": "3.3.1",
"typescript": "5.0.3",
"uuid": "^9.0.1"
}
}