-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.26 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
74
75
76
77
78
79
80
{
"name": "@omrid01/node-red-dashboard-2-table-tabulator",
"version": "0.6.4",
"description": "Table node, using Tabulator-tables package, for Node-RED Dashboard 2.0",
"keywords": [
"node-red",
"node-red-dashboard-2",
"tabulator"
],
"repository": {
"type": "git",
"url": "https://github.com/omrid01/node-red-dashboard-2-table-tabulator.git"
},
"license": "Apache-2.0",
"author": {
"name": "Omri Dayan",
"url": "https://github.com/omrid01"
},
"contributors": [
{
"name": "Joe Pavitt",
"url": "https://github.com/joepavitt"
}
],
"exports": {
"require": "./resources/ui-tabulator.umd.js"
},
"files": [
"dist/*",
"nodes/*",
"ui/*",
"resources/*",
"examples/*"
],
"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": {
"tabulator-tables": "^6.2.1",
"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.12",
"vite-plugin-css-injected-by-js": "^3.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"ui-tabulator": "nodes/ui-tabulator.js"
}
},
"node-red-dashboard-2": {
"version": ">=1.17.1",
"widgets": {
"ui-tabulator": {
"output": "ui-tabulator.umd.js",
"component": "UITabulator"
}
}
}
}