@wojciechpiskorz/astroix 0.0.19 → 0.0.20
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 +20 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wojciechpiskorz/astroix",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20",
|
|
4
4
|
"description": "Dev-only Astro 7 integration — a visual builder for Content Collections content and repo-mapped CSS",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"check": "biome check .",
|
|
45
45
|
"check:write": "biome check --write .",
|
|
46
46
|
"check:artifact": "node scripts/check-chrome-artifact.mjs",
|
|
47
|
+
"check:dist-graph": "node scripts/check-dist-graph.mjs",
|
|
47
48
|
"check:publint": "publint",
|
|
48
49
|
"smoke": "node scripts/smoke.mjs",
|
|
49
50
|
"prepare-local": "node scripts/prepare-local-link.mjs",
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
"test": "vitest run",
|
|
56
57
|
"test:watch": "vitest",
|
|
57
58
|
"test:e2e": "playwright test",
|
|
58
|
-
"ci:publish": "bun run build && bun run check:artifact && bun run check:publint && bunx changeset publish",
|
|
59
|
+
"ci:publish": "bun run build && bun run check:artifact && bun run check:dist-graph && bun run check:publint && bunx changeset publish",
|
|
59
60
|
"changeset": "changeset"
|
|
60
61
|
},
|
|
61
62
|
"peerDependencies": {
|
|
@@ -64,44 +65,44 @@
|
|
|
64
65
|
},
|
|
65
66
|
"dependencies": {
|
|
66
67
|
"@astrojs/compiler-binding": "^0.4.0",
|
|
68
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
69
|
+
"@vitejs/plugin-react": "^6.1.0",
|
|
70
|
+
"postcss": "^8.5.26"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
67
73
|
"@base-ui/react": "^1.7.0",
|
|
74
|
+
"@biomejs/biome": "^2.5.10",
|
|
75
|
+
"@changesets/cli": "^3.0.1",
|
|
68
76
|
"@codemirror/lang-css": "^6.3.1",
|
|
69
77
|
"@codemirror/lang-markdown": "^6.5.2",
|
|
70
78
|
"@codemirror/language": "^6.12.4",
|
|
71
79
|
"@codemirror/state": "^6.7.1",
|
|
72
80
|
"@codemirror/view": "^6.43.9",
|
|
73
|
-
"@
|
|
81
|
+
"@playwright/test": "^1.62.1",
|
|
74
82
|
"@tanstack/react-form": "^1.33.5",
|
|
75
83
|
"@tanstack/react-query": "^5.102.6",
|
|
76
|
-
"@vitejs/plugin-react": "^6.1.0",
|
|
77
|
-
"class-variance-authority": "^0.7.1",
|
|
78
|
-
"clsx": "^2.1.1",
|
|
79
|
-
"codemirror": "^6.0.2",
|
|
80
|
-
"lucide-react": "^1.34.0",
|
|
81
|
-
"postcss": "^8.5.26",
|
|
82
|
-
"tailwind-merge": "^3.6.0",
|
|
83
|
-
"tw-animate-css": "^1.4.0",
|
|
84
|
-
"yaml": "^2.9.0",
|
|
85
|
-
"zustand": "^5.0.15"
|
|
86
|
-
},
|
|
87
|
-
"devDependencies": {
|
|
88
|
-
"@biomejs/biome": "^2.5.10",
|
|
89
|
-
"@changesets/cli": "^3.0.1",
|
|
90
|
-
"@playwright/test": "^1.62.1",
|
|
91
84
|
"@types/react": "^19.2.18",
|
|
92
85
|
"@types/react-dom": "^19.2.5",
|
|
93
86
|
"@vitest/coverage-v8": "^4.1.11",
|
|
94
87
|
"astro": "^7.2.7",
|
|
88
|
+
"class-variance-authority": "^0.7.1",
|
|
89
|
+
"clsx": "^2.1.1",
|
|
90
|
+
"codemirror": "^6.0.2",
|
|
95
91
|
"happy-dom": "^20.11.6",
|
|
92
|
+
"lucide-react": "^1.34.0",
|
|
96
93
|
"oxc-parser": "^0.147.0",
|
|
97
94
|
"oxc-transform-react": "^0.147.0",
|
|
98
95
|
"publint": "^0.3.24",
|
|
99
96
|
"react": "^19.2.8",
|
|
100
97
|
"react-dom": "^19.2.8",
|
|
101
98
|
"shadcn": "^4.19.0",
|
|
99
|
+
"tailwind-merge": "^3.6.0",
|
|
102
100
|
"tsup": "^8.5.1",
|
|
101
|
+
"tw-animate-css": "^1.4.0",
|
|
103
102
|
"typescript": "~5.9.3",
|
|
104
103
|
"vite": "^8.2.2",
|
|
105
|
-
"vitest": "^4.1.11"
|
|
104
|
+
"vitest": "^4.1.11",
|
|
105
|
+
"yaml": "^2.9.0",
|
|
106
|
+
"zustand": "^5.0.15"
|
|
106
107
|
}
|
|
107
108
|
}
|