praxis-kit 1.1.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/LICENSE +21 -0
- package/dist/chunk-KDUNVQK2.js +2059 -0
- package/dist/codemod/index.d.ts +21 -0
- package/dist/codemod/index.js +241955 -0
- package/dist/eslint/index.d.ts +84 -0
- package/dist/eslint/index.js +1068 -0
- package/dist/lit/index.d.ts +304 -0
- package/dist/lit/index.js +1887 -0
- package/dist/merge-refs-CfBqh1UO.d.ts +374 -0
- package/dist/preact/index.d.ts +292 -0
- package/dist/preact/index.js +2062 -0
- package/dist/react/index.d.ts +27 -0
- package/dist/react/index.js +197 -0
- package/dist/react/legacy.d.ts +21 -0
- package/dist/react/legacy.js +209 -0
- package/dist/solid/index.d.ts +287 -0
- package/dist/solid/index.js +1837 -0
- package/dist/svelte/index.d.ts +343 -0
- package/dist/svelte/index.js +1723 -0
- package/dist/tailwind/index.d.ts +138 -0
- package/dist/tailwind/index.js +508 -0
- package/dist/ts-plugin/index.cjs +191 -0
- package/dist/ts-plugin/index.d.cts +10 -0
- package/dist/vite-plugin/index.d.ts +395 -0
- package/dist/vite-plugin/index.js +1329 -0
- package/dist/vue/index.d.ts +309 -0
- package/dist/vue/index.js +1922 -0
- package/dist/web/index.d.ts +302 -0
- package/dist/web/index.js +1858 -0
- package/package.json +176 -0
package/package.json
ADDED
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "praxis-kit",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"exports": {
|
|
6
|
+
"./react": {
|
|
7
|
+
"types": "./dist/react/index.d.ts",
|
|
8
|
+
"import": "./dist/react/index.js"
|
|
9
|
+
},
|
|
10
|
+
"./react/legacy": {
|
|
11
|
+
"types": "./dist/react/legacy.d.ts",
|
|
12
|
+
"import": "./dist/react/legacy.js"
|
|
13
|
+
},
|
|
14
|
+
"./preact": {
|
|
15
|
+
"types": "./dist/preact/index.d.ts",
|
|
16
|
+
"import": "./dist/preact/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./solid": {
|
|
19
|
+
"types": "./dist/solid/index.d.ts",
|
|
20
|
+
"import": "./dist/solid/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./svelte": {
|
|
23
|
+
"types": "./dist/svelte/index.d.ts",
|
|
24
|
+
"import": "./dist/svelte/index.js"
|
|
25
|
+
},
|
|
26
|
+
"./vue": {
|
|
27
|
+
"types": "./dist/vue/index.d.ts",
|
|
28
|
+
"import": "./dist/vue/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./lit": {
|
|
31
|
+
"types": "./dist/lit/index.d.ts",
|
|
32
|
+
"import": "./dist/lit/index.js"
|
|
33
|
+
},
|
|
34
|
+
"./web": {
|
|
35
|
+
"types": "./dist/web/index.d.ts",
|
|
36
|
+
"import": "./dist/web/index.js"
|
|
37
|
+
},
|
|
38
|
+
"./tailwind": {
|
|
39
|
+
"types": "./dist/tailwind/index.d.ts",
|
|
40
|
+
"import": "./dist/tailwind/index.js"
|
|
41
|
+
},
|
|
42
|
+
"./eslint": {
|
|
43
|
+
"types": "./dist/eslint/index.d.ts",
|
|
44
|
+
"import": "./dist/eslint/index.js"
|
|
45
|
+
},
|
|
46
|
+
"./ts-plugin": {
|
|
47
|
+
"types": "./dist/ts-plugin/index.d.cts",
|
|
48
|
+
"require": "./dist/ts-plugin/index.cjs"
|
|
49
|
+
},
|
|
50
|
+
"./vite-plugin": {
|
|
51
|
+
"types": "./dist/vite-plugin/index.d.ts",
|
|
52
|
+
"import": "./dist/vite-plugin/index.js"
|
|
53
|
+
},
|
|
54
|
+
"./codemod": {
|
|
55
|
+
"types": "./dist/codemod/index.d.ts",
|
|
56
|
+
"import": "./dist/codemod/index.js"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"bin": {
|
|
60
|
+
"praxis-codemod": "./dist/codemod/index.js"
|
|
61
|
+
},
|
|
62
|
+
"files": [
|
|
63
|
+
"dist",
|
|
64
|
+
"LICENSE"
|
|
65
|
+
],
|
|
66
|
+
"sideEffects": false,
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"clsx": "^2.1.1",
|
|
69
|
+
"type-fest": "^5.6.0"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"react": ">=18",
|
|
73
|
+
"preact": ">=10.11",
|
|
74
|
+
"solid-js": ">=1.6",
|
|
75
|
+
"svelte": ">=5",
|
|
76
|
+
"vue": ">=3.4",
|
|
77
|
+
"lit": ">=3.0",
|
|
78
|
+
"eslint": ">=9",
|
|
79
|
+
"typescript": ">=5",
|
|
80
|
+
"vite": ">=5"
|
|
81
|
+
},
|
|
82
|
+
"peerDependenciesMeta": {
|
|
83
|
+
"react": {
|
|
84
|
+
"optional": true
|
|
85
|
+
},
|
|
86
|
+
"preact": {
|
|
87
|
+
"optional": true
|
|
88
|
+
},
|
|
89
|
+
"solid-js": {
|
|
90
|
+
"optional": true
|
|
91
|
+
},
|
|
92
|
+
"svelte": {
|
|
93
|
+
"optional": true
|
|
94
|
+
},
|
|
95
|
+
"vue": {
|
|
96
|
+
"optional": true
|
|
97
|
+
},
|
|
98
|
+
"lit": {
|
|
99
|
+
"optional": true
|
|
100
|
+
},
|
|
101
|
+
"eslint": {
|
|
102
|
+
"optional": true
|
|
103
|
+
},
|
|
104
|
+
"typescript": {
|
|
105
|
+
"optional": true
|
|
106
|
+
},
|
|
107
|
+
"vite": {
|
|
108
|
+
"optional": true
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"devDependencies": {
|
|
112
|
+
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
113
|
+
"@types/node": "^25.9.1",
|
|
114
|
+
"@types/react": "^19.2.17",
|
|
115
|
+
"@types/react-dom": "^19.0.0",
|
|
116
|
+
"@typescript-eslint/utils": "8.60.0",
|
|
117
|
+
"lit": "^3.0.0",
|
|
118
|
+
"preact": "^10.25.0",
|
|
119
|
+
"react": "^19.2.7",
|
|
120
|
+
"react-dom": "^19.2.7",
|
|
121
|
+
"solid-js": "^1.9.0",
|
|
122
|
+
"svelte": "^5.56.3",
|
|
123
|
+
"ts-morph": "^28.0.0",
|
|
124
|
+
"tsup": "^8.5.1",
|
|
125
|
+
"typescript": "^6.0.3",
|
|
126
|
+
"vite": "^8.0.16",
|
|
127
|
+
"vue": "^3.5.38",
|
|
128
|
+
"@praxis-kit/adapter-utils": "0.0.0",
|
|
129
|
+
"@praxis-kit/shared": "0.8.0-beta.4",
|
|
130
|
+
"@praxis-kit/core": "0.8.0-beta.4"
|
|
131
|
+
},
|
|
132
|
+
"publishConfig": {
|
|
133
|
+
"access": "public"
|
|
134
|
+
},
|
|
135
|
+
"repository": {
|
|
136
|
+
"type": "git",
|
|
137
|
+
"url": "git+https://github.com/slowebworkz/praxis-kit.git",
|
|
138
|
+
"directory": "packages/kit"
|
|
139
|
+
},
|
|
140
|
+
"homepage": "https://github.com/slowebworkz/praxis-kit/tree/main/packages/kit#readme",
|
|
141
|
+
"bugs": {
|
|
142
|
+
"url": "https://github.com/slowebworkz/praxis-kit/issues"
|
|
143
|
+
},
|
|
144
|
+
"license": "MIT",
|
|
145
|
+
"author": "K Huehn <slowebworkz@gmail.com>",
|
|
146
|
+
"description": "Praxis Kit — polymorphic components with ARIA contracts and variant composition. Single package for all framework adapters and tooling.",
|
|
147
|
+
"keywords": [
|
|
148
|
+
"praxis-kit",
|
|
149
|
+
"polymorphic",
|
|
150
|
+
"ui",
|
|
151
|
+
"components",
|
|
152
|
+
"accessibility",
|
|
153
|
+
"aria",
|
|
154
|
+
"typescript",
|
|
155
|
+
"framework-agnostic",
|
|
156
|
+
"contract",
|
|
157
|
+
"variants",
|
|
158
|
+
"react",
|
|
159
|
+
"preact",
|
|
160
|
+
"solid",
|
|
161
|
+
"svelte",
|
|
162
|
+
"vue",
|
|
163
|
+
"lit"
|
|
164
|
+
],
|
|
165
|
+
"engines": {
|
|
166
|
+
"node": ">=18"
|
|
167
|
+
},
|
|
168
|
+
"scripts": {
|
|
169
|
+
"build": "tsup",
|
|
170
|
+
"dev": "tsup --watch",
|
|
171
|
+
"lint": "eslint . --fix",
|
|
172
|
+
"lint:check": "eslint .",
|
|
173
|
+
"typecheck": "tsc --noEmit",
|
|
174
|
+
"lint:pkg": "publint"
|
|
175
|
+
}
|
|
176
|
+
}
|