@dilipod/ui 0.4.16 → 0.4.17
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 +17 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dilipod/ui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.17",
|
|
4
4
|
"description": "Dilipod Design System - Shared UI components and styles",
|
|
5
5
|
"author": "Dilipod <hello@dilipod.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,22 +42,6 @@
|
|
|
42
42
|
"dist",
|
|
43
43
|
"src"
|
|
44
44
|
],
|
|
45
|
-
"scripts": {
|
|
46
|
-
"build": "tsup && tsc --emitDeclarationOnly --declaration --declarationMap",
|
|
47
|
-
"dev": "tsup --watch",
|
|
48
|
-
"lint": "eslint src/",
|
|
49
|
-
"test": "vitest",
|
|
50
|
-
"test:run": "vitest run",
|
|
51
|
-
"test:coverage": "vitest run --coverage",
|
|
52
|
-
"storybook": "storybook dev -p 6006",
|
|
53
|
-
"build-storybook": "storybook build",
|
|
54
|
-
"clean": "rm -rf dist",
|
|
55
|
-
"prepublishOnly": "npm run build",
|
|
56
|
-
"release": "npm run build && npm publish",
|
|
57
|
-
"release:patch": "npm version patch && npm run release",
|
|
58
|
-
"release:minor": "npm version minor && npm run release",
|
|
59
|
-
"release:major": "npm version major && npm run release"
|
|
60
|
-
},
|
|
61
45
|
"peerDependencies": {
|
|
62
46
|
"react": "^18.0.0 || ^19.0.0",
|
|
63
47
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
@@ -111,5 +95,20 @@
|
|
|
111
95
|
"typescript": "^5.8.3",
|
|
112
96
|
"vite": "^7.3.1",
|
|
113
97
|
"vitest": "^1.2.0"
|
|
98
|
+
},
|
|
99
|
+
"scripts": {
|
|
100
|
+
"build": "tsup && tsc --emitDeclarationOnly --declaration --declarationMap",
|
|
101
|
+
"dev": "tsup --watch",
|
|
102
|
+
"lint": "eslint src/",
|
|
103
|
+
"test": "vitest",
|
|
104
|
+
"test:run": "vitest run",
|
|
105
|
+
"test:coverage": "vitest run --coverage",
|
|
106
|
+
"storybook": "storybook dev -p 6006",
|
|
107
|
+
"build-storybook": "storybook build",
|
|
108
|
+
"clean": "rm -rf dist",
|
|
109
|
+
"release": "npm run build && npm publish",
|
|
110
|
+
"release:patch": "npm version patch && npm run release",
|
|
111
|
+
"release:minor": "npm version minor && npm run release",
|
|
112
|
+
"release:major": "npm version major && npm run release"
|
|
114
113
|
}
|
|
115
|
-
}
|
|
114
|
+
}
|