@databrainhq/plugin 0.8.3 → 0.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,98 +1,98 @@
1
- {
2
- "name": "@databrainhq/plugin",
3
- "version": "0.8.3",
4
- "description": "Databrain app dashboard ui plugin.",
5
- "author": "",
6
- "license": "MIT",
7
- "repository": "databrainhq/plugin",
8
- "source": "src/index.ts",
9
- "main": "./dist/index.umd.js",
10
- "module": "./dist/index.es.js",
11
- "types": "./dist/index.d.ts",
12
- "exports": {
13
- ".": {
14
- "import": "./dist/index.es.js",
15
- "require": "./dist/index.umd.js"
16
- },
17
- "./dist/style.css": "./dist/style.css"
18
- },
19
- "engines": {
20
- "node": "^14.13.1 || >=16.15.1",
21
- "yarn": "please-use-npm"
22
- },
23
- "scripts": {
24
- "serve": "vite --port 3005",
25
- "build:css": "tailwindcss build -i src/index.css -o dist/index.css",
26
- "build": "tsc && vite build",
27
- "husky": "husky install",
28
- "predeploy": "cd example && npm install && npm run build",
29
- "lint": "eslint --ext .tsx,.ts --ignore-path .gitignore --fix src",
30
- "codegen": "graphql-codegen --config codegen.yml -r dotenv/config",
31
- "prepare": "npm run build"
32
- },
33
- "devDependencies": {
34
- "@commitlint/cli": "^17.0.3",
35
- "@commitlint/config-conventional": "^17.0.3",
36
- "@graphql-codegen/cli": "^2.16.4",
37
- "@graphql-codegen/introspection": "^2.2.3",
38
- "@graphql-codegen/typescript": "^2.8.7",
39
- "@graphql-codegen/typescript-operations": "^2.5.12",
40
- "@graphql-codegen/typescript-react-apollo": "^3.3.7",
41
- "@graphql-codegen/typescript-react-query": "^3.6.2",
42
- "@iconify/json": "^2.2.6",
43
- "@svgr/core": "^6.5.1",
44
- "@types/node": "^12.12.38",
45
- "@types/react": "^18.0.26",
46
- "@types/react-dom": "^18.0.10",
47
- "@types/react-grid-layout": "^1.3.2",
48
- "@typescript-eslint/eslint-plugin": "^4.31.1",
49
- "@typescript-eslint/parser": "^4.31.1",
50
- "@vitejs/plugin-react": "^1.3.0",
51
- "autoprefixer": "^10.4.7",
52
- "babel-eslint": "^10.0.3",
53
- "cross-env": "^7.0.2",
54
- "eslint": "^7.32.0",
55
- "eslint-config-airbnb": "^18.2.1",
56
- "eslint-config-airbnb-typescript": "^14.0.0",
57
- "eslint-config-prettier": "^8.3.0",
58
- "eslint-plugin-import": "^2.24.2",
59
- "eslint-plugin-jsx-a11y": "^6.6.0",
60
- "eslint-plugin-prettier": "^4.0.0",
61
- "eslint-plugin-react": "^7.30.1",
62
- "eslint-plugin-react-hooks": "^4.6.0",
63
- "eslint-plugin-unicorn": "^36.0.0",
64
- "graphql": "^16.6.0",
65
- "husky": "^8.0.1",
66
- "lint-staged": "^13.0.3",
67
- "postcss": "^8.4.21",
68
- "prettier": "^2.0.4",
69
- "react": "^18.2.0",
70
- "react-dom": "^18.2.0",
71
- "tailwindcss": "^3.2.4",
72
- "ts-node": "^10.9.1",
73
- "typescript": "^4.6.3",
74
- "unplugin-icons": "^0.14.7",
75
- "vite": "^2.9.9",
76
- "vite-plugin-dts": "^1.7.1",
77
- "vite-tsconfig-paths": "^4.0.3"
78
- },
79
- "files": [
80
- "dist"
81
- ],
82
- "dependencies": {
83
- "@headlessui/react": "^1.7.2",
84
- "@tanstack/match-sorter-utils": "^8.8.4",
85
- "@tanstack/react-table": "^8.7.9",
86
- "classnames": "^2.3.2",
87
- "echarts": "^5.4.1",
88
- "echarts-for-react": "^3.0.2",
89
- "react-error-boundary": "^3.1.4",
90
- "react-grid-layout": "^1.3.4",
91
- "react-hook-form": "^7.33.1",
92
- "react-query": "^3.39.2"
93
- },
94
- "peerDependencies": {
95
- "react": "^18.2.0",
96
- "react-dom": "^18.2.0"
97
- }
98
- }
1
+ {
2
+ "name": "@databrainhq/plugin",
3
+ "version": "0.8.5",
4
+ "description": "Databrain app dashboard ui plugin.",
5
+ "author": "",
6
+ "license": "MIT",
7
+ "repository": "databrainhq/plugin",
8
+ "source": "src/index.ts",
9
+ "main": "./dist/index.umd.js",
10
+ "module": "./dist/index.es.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.es.js",
15
+ "require": "./dist/index.umd.js"
16
+ },
17
+ "./dist/style.css": "./dist/style.css"
18
+ },
19
+ "engines": {
20
+ "node": "^14.13.1 || >=16.15.1",
21
+ "yarn": "please-use-npm"
22
+ },
23
+ "scripts": {
24
+ "serve": "vite --port 3005",
25
+ "build:css": "tailwindcss build -i src/index.css -o dist/index.css",
26
+ "build": "tsc && vite build",
27
+ "husky": "husky install",
28
+ "predeploy": "cd example && npm install && npm run build",
29
+ "lint": "eslint --ext .tsx,.ts --ignore-path .gitignore --fix src",
30
+ "codegen": "graphql-codegen --config codegen.yml -r dotenv/config",
31
+ "prepare": "npm run build"
32
+ },
33
+ "devDependencies": {
34
+ "@commitlint/cli": "^17.0.3",
35
+ "@commitlint/config-conventional": "^17.0.3",
36
+ "@graphql-codegen/cli": "^2.16.4",
37
+ "@graphql-codegen/introspection": "^2.2.3",
38
+ "@graphql-codegen/typescript": "^2.8.7",
39
+ "@graphql-codegen/typescript-operations": "^2.5.12",
40
+ "@graphql-codegen/typescript-react-apollo": "^3.3.7",
41
+ "@graphql-codegen/typescript-react-query": "^3.6.2",
42
+ "@iconify/json": "^2.2.6",
43
+ "@svgr/core": "^6.5.1",
44
+ "@types/node": "^12.12.38",
45
+ "@types/react": "^18.0.26",
46
+ "@types/react-dom": "^18.0.10",
47
+ "@types/react-grid-layout": "^1.3.2",
48
+ "@typescript-eslint/eslint-plugin": "^4.31.1",
49
+ "@typescript-eslint/parser": "^4.31.1",
50
+ "@vitejs/plugin-react": "^1.3.0",
51
+ "autoprefixer": "^10.4.7",
52
+ "babel-eslint": "^10.0.3",
53
+ "cross-env": "^7.0.2",
54
+ "eslint": "^7.32.0",
55
+ "eslint-config-airbnb": "^18.2.1",
56
+ "eslint-config-airbnb-typescript": "^14.0.0",
57
+ "eslint-config-prettier": "^8.3.0",
58
+ "eslint-plugin-import": "^2.24.2",
59
+ "eslint-plugin-jsx-a11y": "^6.6.0",
60
+ "eslint-plugin-prettier": "^4.0.0",
61
+ "eslint-plugin-react": "^7.30.1",
62
+ "eslint-plugin-react-hooks": "^4.6.0",
63
+ "eslint-plugin-unicorn": "^36.0.0",
64
+ "graphql": "^16.6.0",
65
+ "husky": "^8.0.1",
66
+ "lint-staged": "^13.0.3",
67
+ "postcss": "^8.4.21",
68
+ "prettier": "^2.0.4",
69
+ "react": "^18.2.0",
70
+ "react-dom": "^18.2.0",
71
+ "tailwindcss": "^3.2.4",
72
+ "ts-node": "^10.9.1",
73
+ "typescript": "^4.6.3",
74
+ "unplugin-icons": "^0.14.7",
75
+ "vite": "^2.9.9",
76
+ "vite-plugin-dts": "^1.7.1",
77
+ "vite-tsconfig-paths": "^4.0.3"
78
+ },
79
+ "files": [
80
+ "dist"
81
+ ],
82
+ "dependencies": {
83
+ "@headlessui/react": "^1.7.2",
84
+ "@tanstack/match-sorter-utils": "^8.8.4",
85
+ "@tanstack/react-table": "^8.7.9",
86
+ "classnames": "^2.3.2",
87
+ "echarts": "^5.4.1",
88
+ "echarts-for-react": "^3.0.2",
89
+ "react-error-boundary": "^3.1.4",
90
+ "react-grid-layout": "^1.3.4",
91
+ "react-hook-form": "^7.33.1",
92
+ "react-query": "^3.39.2"
93
+ },
94
+ "peerDependencies": {
95
+ "react": "^18.2.0",
96
+ "react-dom": "^18.2.0"
97
+ }
98
+ }