starwind 2.0.1 → 3.0.0-beta.2
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/LICENSE +1 -1
- package/README.md +85 -19
- package/dist/index.js +20197 -2132
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "starwind",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.0.0-beta.2",
|
|
4
|
+
"description": "Install and manage Starwind UI components in Astro and React applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://starwind.dev/",
|
|
7
7
|
"author": {
|
|
8
|
-
"name": "
|
|
9
|
-
"url": "https://x.com/
|
|
8
|
+
"name": "boston343",
|
|
9
|
+
"url": "https://x.com/boston343builds"
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
"astro",
|
|
21
21
|
"astro-component",
|
|
22
22
|
"astro-ui",
|
|
23
|
+
"react",
|
|
24
|
+
"react-component",
|
|
23
25
|
"withastro",
|
|
24
26
|
"ui",
|
|
25
27
|
"accessibility",
|
|
@@ -37,11 +39,11 @@
|
|
|
37
39
|
],
|
|
38
40
|
"dependencies": {
|
|
39
41
|
"@clack/prompts": "^0.11.0",
|
|
40
|
-
"@starwind-ui/core": "2.0.1",
|
|
41
42
|
"chalk": "^5.6.2",
|
|
42
43
|
"commander": "^14.0.2",
|
|
43
44
|
"execa": "^9.6.0",
|
|
44
45
|
"fs-extra": "^11.3.2",
|
|
46
|
+
"jsonc-parser": "^3.3.1",
|
|
45
47
|
"semver": "^7.7.3",
|
|
46
48
|
"zod": "^3.25.74"
|
|
47
49
|
},
|
|
@@ -60,14 +62,12 @@
|
|
|
60
62
|
"dev": "tsup --watch",
|
|
61
63
|
"cli:link": "pnpm add --global . --ignore-scripts",
|
|
62
64
|
"cli:unlink": "pnpm rm --global starwind",
|
|
63
|
-
"cli:yalc:link": "yalc publish && yalc link @starwind-ui/core",
|
|
64
|
-
"cli:yalc:unlink": "yalc remove @starwind-ui/core && yalc remove starwind",
|
|
65
65
|
"test": "vitest",
|
|
66
66
|
"test:run": "vitest run",
|
|
67
67
|
"test:coverage": "vitest run --coverage",
|
|
68
68
|
"typecheck": "tsc --noEmit",
|
|
69
|
-
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
|
|
70
|
-
"format:write": "prettier --write \"**/*.{ts,tsx,md,json}\" --cache",
|
|
69
|
+
"format:check": "prettier --ignore-path ../../.prettierignore --check \"**/*.{ts,tsx,md,json}\"",
|
|
70
|
+
"format:write": "prettier --ignore-path ../../.prettierignore --write \"**/*.{ts,tsx,md,json}\" --cache",
|
|
71
71
|
"publish:beta": "pnpm publish --tag beta --access public",
|
|
72
72
|
"publish:next": "pnpm publish --tag next --access public",
|
|
73
73
|
"publish:release": "pnpm publish --access public"
|