-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.13 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
{
"name": "@flowfuse/node-red-dashboard-2-ui-iframe",
"version": "1.1.0",
"description": "A Node-RED Dashboard 2.0 widget that allows you to embed an iframe into your dashboard",
"keywords": [
"node-red",
"node-red-dashboard-2"
],
"repository": {
"type": "git",
"url": "https://github.com/FlowFuse/node-red-dashboard-2-ui-iframe.git"
},
"license": "Apache-2.0",
"author": {
"name": "Joe Pavitt",
"url": "https://github.com/joepavitt"
},
"exports": {
"import": "./resources/ui-iframe.esm.js",
"require": "./resources/ui-iframe.umd.js"
},
"files": [
"dist/*",
"nodes/*",
"ui/*",
"resources/*"
],
"scripts": {
"build": "vite build",
"build:dev": "NODE_ENV=development vite build",
"dev": "NODE_ENV=development vite build --watch",
"dev:prod": "vite build --watch",
"lint": "npm run lint:js && npm run lint:package",
"lint:fix": "npm run lint:js:fix && npm run lint:package:fix",
"lint:js": "eslint --ext .js,.vue,.cjs,.mjs .",
"lint:js:fix": "yarn lint:js --fix",
"lint:package": "sort-package-json --check 'package.json'",
"lint:package:fix": "sort-package-json 'package.json'"
},
"dependencies": {
"to-title-case": "^1.0.0",
"vue": "^3.3.8",
"vuex": "^4.1.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.0",
"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": "^5.0.13",
"vite-plugin-css-injected-by-js": "^3.3.0"
},
"engines": {
"node": ">=14"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"ui-iframe": "nodes/ui-iframe.js"
}
},
"node-red-dashboard-2": {
"version": "1.0.0",
"widgets": {
"ui-iframe": {
"output": "ui-iframe.umd.js",
"component": "UIIframe"
}
}
}
}