@harshit-wander/component-lib 1.1.11 → 1.1.12
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 +24 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harshit-wander/component-lib",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.12",
|
|
4
4
|
"description": "WanderOn React component library — themed primitives and page sections built with Tailwind CSS v4.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,6 +33,27 @@
|
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=20"
|
|
35
35
|
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "pnpm build:js && pnpm build:css",
|
|
38
|
+
"build:js": "tsup",
|
|
39
|
+
"build:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
|
|
40
|
+
"dev:js": "tsup --watch",
|
|
41
|
+
"dev:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch",
|
|
42
|
+
"dev": "pnpm \"/^dev:.*/\"",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"test": "vitest run",
|
|
45
|
+
"test:watch": "vitest",
|
|
46
|
+
"test:ui": "vitest --ui",
|
|
47
|
+
"lint": "biome check src",
|
|
48
|
+
"lint:fix": "biome check --write src",
|
|
49
|
+
"format": "biome format --write src",
|
|
50
|
+
"storybook": "storybook dev -p 6006",
|
|
51
|
+
"build-storybook": "storybook build",
|
|
52
|
+
"changeset": "changeset",
|
|
53
|
+
"version": "changeset version",
|
|
54
|
+
"release": "pnpm build && changeset publish",
|
|
55
|
+
"prepare": "husky"
|
|
56
|
+
},
|
|
36
57
|
"lint-staged": {
|
|
37
58
|
"*.{ts,tsx,js,jsx,json}": [
|
|
38
59
|
"biome check --write --no-errors-on-unmatched"
|
|
@@ -67,31 +88,12 @@
|
|
|
67
88
|
"typescript": "^6.0.3",
|
|
68
89
|
"vitest": "^4.1.5"
|
|
69
90
|
},
|
|
91
|
+
"packageManager": "pnpm@10.33.3",
|
|
70
92
|
"dependencies": {
|
|
71
93
|
"class-variance-authority": "^0.7.1",
|
|
72
94
|
"clsx": "^2.1.1",
|
|
73
95
|
"hls.js": "^1.6.16",
|
|
74
96
|
"swiper": "^12.2.0",
|
|
75
97
|
"tailwind-merge": "^3.6.0"
|
|
76
|
-
},
|
|
77
|
-
"scripts": {
|
|
78
|
-
"build": "pnpm build:js && pnpm build:css",
|
|
79
|
-
"build:js": "tsup",
|
|
80
|
-
"build:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
|
|
81
|
-
"dev:js": "tsup --watch",
|
|
82
|
-
"dev:css": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch",
|
|
83
|
-
"dev": "pnpm \"/^dev:.*/\"",
|
|
84
|
-
"typecheck": "tsc --noEmit",
|
|
85
|
-
"test": "vitest run",
|
|
86
|
-
"test:watch": "vitest",
|
|
87
|
-
"test:ui": "vitest --ui",
|
|
88
|
-
"lint": "biome check src",
|
|
89
|
-
"lint:fix": "biome check --write src",
|
|
90
|
-
"format": "biome format --write src",
|
|
91
|
-
"storybook": "storybook dev -p 6006",
|
|
92
|
-
"build-storybook": "storybook build",
|
|
93
|
-
"changeset": "changeset",
|
|
94
|
-
"version": "changeset version",
|
|
95
|
-
"release": "pnpm build && changeset publish"
|
|
96
98
|
}
|
|
97
|
-
}
|
|
99
|
+
}
|