-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.23 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
{
"name": "@flowfuse/node-red-dashboard-2-ui-chat",
"version": "1.3.0",
"description": "A FlowFuse Dashboard widget to display a chat interface",
"keywords": [
"node-red",
"node-red-dashboard-2"
],
"repository": {
"type": "git",
"url": "https://github.com/flowfuse/node-red-dashboard-2-ui-chat.git"
},
"homepage": "https://github.com/flowfuse/node-red-dashboard-2-ui-chat",
"bugs": {
"url": "https://github.com/flowfuse/node-red-dashboard-2-ui-chat/issues"
},
"license": "Apache-2.0",
"author": {
"name": "FlowFuse Inc.",
"url": "https://flowfuse.com"
},
"contributors": [],
"exports": {
"import": "./resources/ui-chat.esm.js",
"require": "./resources/ui-chat.umd.js"
},
"files": [
"dist/*",
"examples/*",
"nodes/*",
"ui/*",
"resources/*"
],
"scripts": {
"build": "vite build",
"build:dev": "vite build --mode development",
"dev": "vite build --mode development --watch",
"dev:prod": "vite build --watch",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint --ext .js,.vue,.cjs,.mjs .",
"lint:js:fix": "yarn lint:js --fix"
},
"dependencies": {
"dompurify": "^3.3.1",
"marked": "^17.0.1",
"to-title-case": "^1.0.0",
"vue": "^3.5.25",
"vuex": "^4.1.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.4",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-vue": "^9.18.1",
"vite": "^6.4.1",
"vite-plugin-css-injected-by-js": "^3.5.2"
},
"engines": {
"node": ">=16.x"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"ui-chat": "nodes/ui-chat.js"
}
},
"node-red-dashboard-2": {
"version": "1.0.0",
"widgets": {
"ui-chat": {
"output": "ui-chat.umd.js",
"component": "UIChat"
}
}
},
"overrides": {
"brace-expansion": ">1.1.11"
}
}