creoui 0.20.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/README.md +167 -0
- package/dist/components.css +3984 -0
- package/dist/shells/CreoFacetGrid.d.ts +37 -0
- package/dist/shells/CreoPageShell.d.ts +42 -0
- package/dist/shells/index.css +1 -0
- package/dist/shells/index.d.ts +17 -0
- package/dist/shells/index.js +45 -0
- package/dist/shells/index.js.map +1 -0
- package/dist/token-shim.css +133 -0
- package/dist/tokens.css +798 -0
- package/dist/tokens.d.ts +1038 -0
- package/dist/tokens.js +612 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "creoui",
|
|
3
|
+
"version": "0.20.1",
|
|
4
|
+
"description": "creoui — Web package (design tokens + components.css + Solid shell primitives)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/shells/index.js",
|
|
7
|
+
"module": "./dist/shells/index.js",
|
|
8
|
+
"types": "./dist/shells/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
"./tokens.css": "./dist/tokens.css",
|
|
11
|
+
"./components.css": "./dist/components.css",
|
|
12
|
+
"./token-shim.css": "./dist/token-shim.css",
|
|
13
|
+
"./tokens.js": {
|
|
14
|
+
"types": "./dist/tokens.d.ts",
|
|
15
|
+
"import": "./dist/tokens.js"
|
|
16
|
+
},
|
|
17
|
+
"./shells": {
|
|
18
|
+
"types": "./dist/shells/index.d.ts",
|
|
19
|
+
"import": "./dist/shells/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./shells/index.css": "./dist/shells/index.css",
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"files": ["dist", "README.md"],
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/chronista-club/creoui.git",
|
|
28
|
+
"directory": "packages/web"
|
|
29
|
+
},
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/chronista-club/creoui/issues"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/chronista-club/creoui#readme",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"design-system",
|
|
36
|
+
"css-custom-properties",
|
|
37
|
+
"design-tokens",
|
|
38
|
+
"solid-js",
|
|
39
|
+
"layout-primitives",
|
|
40
|
+
"creoui"
|
|
41
|
+
],
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "bun run --cwd ../.. build:web",
|
|
47
|
+
"build:js": "vite build",
|
|
48
|
+
"typecheck:build": "tsc -p tsconfig.build.json --noEmit"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"solid-js": "^1.9.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"solid-js": "^1.9.0",
|
|
55
|
+
"typescript": "^5.5.0",
|
|
56
|
+
"vite": "^5.4.0",
|
|
57
|
+
"vite-plugin-dts": "^4.2.0",
|
|
58
|
+
"vite-plugin-solid": "^2.10.0"
|
|
59
|
+
},
|
|
60
|
+
"license": "Apache-2.0"
|
|
61
|
+
}
|