@plumbus/ui 0.1.0 → 0.1.1
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 +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plumbus/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Plumbus UI — client generation and frontend templates",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -15,6 +15,16 @@
|
|
|
15
15
|
"dist",
|
|
16
16
|
"instructions"
|
|
17
17
|
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc -b",
|
|
20
|
+
"dev": "tsc -b --watch",
|
|
21
|
+
"test": "vitest run --passWithNoTests",
|
|
22
|
+
"test:browser": "vitest run --config vitest.config.browser.ts --passWithNoTests",
|
|
23
|
+
"lint": "biome lint ./src",
|
|
24
|
+
"format": "biome format --write ./src",
|
|
25
|
+
"format:check": "biome format ./src",
|
|
26
|
+
"typecheck": "tsc --noEmit"
|
|
27
|
+
},
|
|
18
28
|
"keywords": [
|
|
19
29
|
"plumbus",
|
|
20
30
|
"ui",
|
|
@@ -30,23 +40,13 @@
|
|
|
30
40
|
"access": "public"
|
|
31
41
|
},
|
|
32
42
|
"dependencies": {
|
|
33
|
-
"
|
|
34
|
-
"
|
|
43
|
+
"@plumbus/core": "workspace:*",
|
|
44
|
+
"zod": "^3.24.0"
|
|
35
45
|
},
|
|
36
46
|
"devDependencies": {
|
|
37
47
|
"@vitest/browser": "^3.0.0",
|
|
38
48
|
"playwright": "^1.52.0",
|
|
39
49
|
"typescript": "^5.7.0",
|
|
40
50
|
"vitest": "^3.0.0"
|
|
41
|
-
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "tsc -b",
|
|
44
|
-
"dev": "tsc -b --watch",
|
|
45
|
-
"test": "vitest run --passWithNoTests",
|
|
46
|
-
"test:browser": "vitest run --config vitest.config.browser.ts --passWithNoTests",
|
|
47
|
-
"lint": "biome lint ./src",
|
|
48
|
-
"format": "biome format --write ./src",
|
|
49
|
-
"format:check": "biome format ./src",
|
|
50
|
-
"typecheck": "tsc --noEmit"
|
|
51
51
|
}
|
|
52
|
-
}
|
|
52
|
+
}
|