@shibui-ui/ui 1.6.0 → 1.14.0
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 +12 -12
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shibui-ui/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/aborbalan/shibui-core",
|
|
7
|
+
"url": "git+https://github.com/aborbalan/shibui-core.git",
|
|
8
8
|
"directory": "packages/shibui-ui"
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
@@ -42,25 +42,25 @@
|
|
|
42
42
|
"scripts": {
|
|
43
43
|
"dev": "vite",
|
|
44
44
|
"clean": "rimraf dist node_modules/.cache",
|
|
45
|
-
"pack:local": "
|
|
45
|
+
"pack:local": "pnpm run build && npm pack",
|
|
46
46
|
"preview": "vite preview",
|
|
47
|
-
"prebuild": "
|
|
48
|
-
"postbuild": "
|
|
47
|
+
"prebuild": "pnpm run clean",
|
|
48
|
+
"postbuild": "pnpm run type-check",
|
|
49
49
|
"type-check": "tsc --noEmit",
|
|
50
50
|
"lint": "eslint . --config .config/eslintrc.cjs --ignore-path .config/.eslintignore",
|
|
51
51
|
"stylelint": "stylelint --config .config/.stylelintrc.json --fix",
|
|
52
52
|
"stylelint:staged": "stylelint --config .config/.stylelintrc.json --fix --",
|
|
53
53
|
"format": "prettier --write \"src/**/*.ts\" --config .config/.prettierrc.json",
|
|
54
|
-
"start": "
|
|
55
|
-
"s": "
|
|
54
|
+
"start": "pnpm run dev",
|
|
55
|
+
"s": "pnpm run dev",
|
|
56
56
|
"prepare": "node -e \"if (process.env.CI !== 'true') { try { require('child_process').execSync('husky', {stdio: 'inherit'}) } catch (e) {} }\"",
|
|
57
57
|
"storybook": "storybook dev -p 6006",
|
|
58
58
|
"build-storybook": "storybook build",
|
|
59
59
|
"lighthouse": "lhci autorun --config=./.config/lighthouserc.cjs",
|
|
60
60
|
"analyze": "cem analyze --litelement --exclude dist",
|
|
61
61
|
"generate:wrappers": "tsx scripts/generate-wrappers.ts",
|
|
62
|
-
"build": "
|
|
63
|
-
"deploy": "
|
|
62
|
+
"build": "pnpm run clean && vite build && tsc && pnpm run analyze && pnpm run generate:wrappers",
|
|
63
|
+
"deploy": "firebase-tools deploy --only hosting:storybook --project lib-ui-b67c5"
|
|
64
64
|
},
|
|
65
65
|
"keywords": [
|
|
66
66
|
"web-components",
|
|
@@ -80,7 +80,6 @@
|
|
|
80
80
|
"@commitlint/cli": "^20.4.1",
|
|
81
81
|
"@commitlint/config-conventional": "^20.4.1",
|
|
82
82
|
"@custom-elements-manifest/analyzer": "^0.11.0",
|
|
83
|
-
"@lhci/cli": "^0.15.1",
|
|
84
83
|
"@playwright/test": "^1.49.0",
|
|
85
84
|
"@storybook/addon-a11y": "^10.2.6",
|
|
86
85
|
"@storybook/addon-docs": "^10.2.6",
|
|
@@ -92,11 +91,13 @@
|
|
|
92
91
|
"@vitest/coverage-v8": "^4.0.18",
|
|
93
92
|
"eslint": "^8.56.0",
|
|
94
93
|
"eslint-plugin-storybook": "^10.2.6",
|
|
94
|
+
"firebase-tools": "^13.0.0",
|
|
95
95
|
"husky": "^9.1.7",
|
|
96
96
|
"lint-staged": "^16.2.7",
|
|
97
97
|
"lit": "^3.0.0",
|
|
98
98
|
"playwright": "^1.49.0",
|
|
99
99
|
"prettier": "^3.1.1",
|
|
100
|
+
"rimraf": "^6.1.3",
|
|
100
101
|
"sass": "^1.97.3",
|
|
101
102
|
"storybook": "^10.2.6",
|
|
102
103
|
"stylelint": "^17.1.1",
|
|
@@ -104,8 +105,7 @@
|
|
|
104
105
|
"typescript": "^5.3.3",
|
|
105
106
|
"vite": "^6.4.2",
|
|
106
107
|
"vite-plugin-dts": "^4.5.4",
|
|
107
|
-
"vitest": "^4.0.18"
|
|
108
|
-
"firebase-tools": "^13.0.0"
|
|
108
|
+
"vitest": "^4.0.18"
|
|
109
109
|
},
|
|
110
110
|
"dependencies": {
|
|
111
111
|
"@lit/react": "^1.0.8",
|