@xola/ui-kit 2.0.0-94 → 2.0.0-95

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@xola/ui-kit",
3
- "version": "2.0.0-94",
3
+ "version": "2.0.0-95",
4
4
  "description": "Xola UI Kit",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -21,11 +21,12 @@
21
21
  "watch": "npm run build -- --watch",
22
22
  "clean": "rm -rf node_modules/.vite",
23
23
  "build:storybook": "node scripts/prepare && build-storybook -s public",
24
- "lint": "xola-lint src",
25
- "lint:fix": "xola-lint src --fix",
26
- "lint:report": "xola-lint --reporter=json src > eslint_report.json && echo 'ESLint report saved to eslint_report.json'",
24
+ "lint": "xola-lint --ignore src/stories src",
25
+ "lint:fix": "xola-lint --ignore src/stories src --fix",
26
+ "lint:report": "xola-lint --ignore src/stories src --reporter=json src > eslint_report.json && echo 'ESLint report saved to eslint_report.json'",
27
27
  "format": "prettier --write src",
28
- "test": "xola-lint && jest"
28
+ "test": "xola-lint && jest",
29
+ "chromatic": "chromatic --exit-zero-on-changes --build-script-name build:storybook"
29
30
  },
30
31
  "dependencies": {
31
32
  "@headlessui/react": "^1.4.0",
@@ -44,7 +45,9 @@
44
45
  "react-hotkeys-hook": "^3.4.0",
45
46
  "react-json-view": "^1.21.3",
46
47
  "react-select": "^5.1.0",
47
- "tippy.js": "^6.3.1"
48
+ "storybook-addon-designs": "^6.3.1",
49
+ "tippy.js": "^6.3.1",
50
+ "typescript": "4.7"
48
51
  },
49
52
  "devDependencies": {
50
53
  "@babel/core": "^7.14.8",
@@ -56,10 +59,11 @@
56
59
  "@storybook/addons": "^6.5.10",
57
60
  "@storybook/react": "^6.5.10",
58
61
  "@storybook/theming": "^6.5.10",
59
- "@xola/jslint": "^2.1.0",
62
+ "@xola/jslint": "^2.1.2",
60
63
  "autoprefixer": "^10.4.5",
61
64
  "babel-jest": "^27.2.0",
62
65
  "babel-loader": "^8.2.2",
66
+ "chromatic": "^6.11.4",
63
67
  "jest": "^27.2.0",
64
68
  "lodash": "^4.17.21",
65
69
  "postcss": "^8.4.5",
@@ -79,6 +83,9 @@
79
83
  "react-dom": "^17.0.2",
80
84
  "tailwindcss": "^3.0.18"
81
85
  },
86
+ "engines": {
87
+ "node": ">=16"
88
+ },
82
89
  "prettier": {
83
90
  "semi": true,
84
91
  "printWidth": 120,
@@ -87,6 +94,7 @@
87
94
  "bracketSpacing": true,
88
95
  "useTabs": false,
89
96
  "arrowParens": "always",
97
+ "bracketSameLine": false,
90
98
  "tabWidth": 4
91
99
  }
92
100
  }