@pathscale/ui 1.2.11 → 1.3.0
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/README.md +98 -25
- package/dist/components/language-switcher/createI18n.d.ts +2 -1
- package/dist/purge-manifest.json +16333 -16333
- package/package.json +16 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pathscale/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"author": "pathscale",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,10 +11,21 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
|
-
"homepage": "https://
|
|
14
|
+
"homepage": "https://js.software",
|
|
15
15
|
"keywords": [
|
|
16
16
|
"solid",
|
|
17
|
-
"solidjs"
|
|
17
|
+
"solidjs",
|
|
18
|
+
"solid-js",
|
|
19
|
+
"component-library",
|
|
20
|
+
"ui",
|
|
21
|
+
"ui-components",
|
|
22
|
+
"design-system",
|
|
23
|
+
"tailwind",
|
|
24
|
+
"tailwindcss",
|
|
25
|
+
"daisyui",
|
|
26
|
+
"headless-ui",
|
|
27
|
+
"accessible",
|
|
28
|
+
"typescript"
|
|
18
29
|
],
|
|
19
30
|
"bugs": {
|
|
20
31
|
"url": "https://github.com/pathscale/ui/issues"
|
|
@@ -39,10 +50,6 @@
|
|
|
39
50
|
"types": "./dist/hooks/*/index.d.ts",
|
|
40
51
|
"import": "./dist/hooks/*/index.js"
|
|
41
52
|
},
|
|
42
|
-
"./stores": {
|
|
43
|
-
"types": "./dist/stores/index.d.ts",
|
|
44
|
-
"import": "./dist/stores/index.js"
|
|
45
|
-
},
|
|
46
53
|
"./motion": {
|
|
47
54
|
"types": "./dist/motion/index.d.ts",
|
|
48
55
|
"import": "./dist/motion/index.js"
|
|
@@ -126,6 +133,8 @@
|
|
|
126
133
|
"format": "bun biome format --write",
|
|
127
134
|
"lint": "bun biome lint --write",
|
|
128
135
|
"check": "bun run scripts/check-contracts.ts",
|
|
136
|
+
"check:package": "bun run scripts/check-package.ts",
|
|
137
|
+
"next-version": "bun run scripts/next-version.ts",
|
|
129
138
|
"playground:dev": "cd playground && bun run dev",
|
|
130
139
|
"playground:build": "cd playground && bun run build",
|
|
131
140
|
"playground:preview": "cd playground && bun run preview"
|