plass-ui 0.0.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/LICENSE +21 -0
- package/README.md +111 -0
- package/dist/components/button/Button.d.ts +42 -0
- package/dist/components/button/Button.js +1 -0
- package/dist/components/button/index.d.ts +2 -0
- package/dist/components/button/index.js +1 -0
- package/dist/components/text-field/TextField.d.ts +65 -0
- package/dist/components/text-field/TextField.js +1 -0
- package/dist/components/text-field/index.d.ts +2 -0
- package/dist/components/text-field/index.js +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -0
- package/dist/internal/icons.d.ts +18 -0
- package/dist/internal/icons.js +1 -0
- package/dist/internal/styles.d.ts +181 -0
- package/dist/internal/styles.js +1 -0
- package/dist/styles.css +2 -0
- package/dist/tailwind.css +498 -0
- package/dist/types.d.ts +74 -0
- package/dist/types.js +8 -0
- package/package.json +141 -0
package/package.json
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "plass-ui",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A React UI component library with a plastic-and-glass design language — moulded gradient controls resting on translucent, blurred sheets. Accessible and themeable, ESM only, types included, dark mode built in.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"sideEffects": [
|
|
8
|
+
"**/*.css"
|
|
9
|
+
],
|
|
10
|
+
"author": "CDGet <jooy2.contact@gmail.com>",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"homepage": "https://plass-ui.cdget.com",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/jooy2/plass-ui"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/jooy2/plass-ui/issues"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "npm run format:fix && tsc --project tsconfig.prod.json && npm run minify && node scripts/build-styles.mjs",
|
|
22
|
+
"lint": "eslint . --report-unused-disable-directives",
|
|
23
|
+
"lint:fix": "eslint . --report-unused-disable-directives --fix",
|
|
24
|
+
"minify": "terser-glob 'dist/**/*.js' --config-file terser.config.json",
|
|
25
|
+
"prepare": "npm run build",
|
|
26
|
+
"format": "prettier .",
|
|
27
|
+
"format:fix": "prettier . --write",
|
|
28
|
+
"docs:changelog": "node scripts/copy-changelog.mjs",
|
|
29
|
+
"docs:dev": "npm run docs:changelog && vitepress dev docs",
|
|
30
|
+
"docs:build": "npm run docs:changelog && vitepress build docs",
|
|
31
|
+
"docs:serve": "npm run docs:build && vitepress serve docs",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:watch": "vitest",
|
|
34
|
+
"typecheck": "tsc --project tsconfig.prod.json --noEmit && tsc --project test/tsconfig.json && tsc --project docs/tsconfig.json"
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=20.19.0"
|
|
38
|
+
},
|
|
39
|
+
"main": "dist/index.js",
|
|
40
|
+
"exports": {
|
|
41
|
+
".": {
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"module": "./dist/index.js",
|
|
44
|
+
"default": "./dist/index.js"
|
|
45
|
+
},
|
|
46
|
+
"./types": {
|
|
47
|
+
"types": "./dist/types.d.ts",
|
|
48
|
+
"module": "./dist/types.js",
|
|
49
|
+
"default": "./dist/types.js"
|
|
50
|
+
},
|
|
51
|
+
"./styles.css": "./dist/styles.css",
|
|
52
|
+
"./tailwind.css": "./dist/tailwind.css"
|
|
53
|
+
},
|
|
54
|
+
"typesVersions": {
|
|
55
|
+
"*": {
|
|
56
|
+
"index.d.ts": [
|
|
57
|
+
"dist/index.d.ts"
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"keywords": [
|
|
62
|
+
"plass-ui",
|
|
63
|
+
"plass",
|
|
64
|
+
"react",
|
|
65
|
+
"reactjs",
|
|
66
|
+
"react-components",
|
|
67
|
+
"react-ui",
|
|
68
|
+
"ui",
|
|
69
|
+
"ui-kit",
|
|
70
|
+
"ui-library",
|
|
71
|
+
"ui-components",
|
|
72
|
+
"component-library",
|
|
73
|
+
"design-system",
|
|
74
|
+
"design-language",
|
|
75
|
+
"frontend",
|
|
76
|
+
"web",
|
|
77
|
+
"typescript",
|
|
78
|
+
"tsx",
|
|
79
|
+
"esm",
|
|
80
|
+
"accessible",
|
|
81
|
+
"accessibility",
|
|
82
|
+
"a11y",
|
|
83
|
+
"aria",
|
|
84
|
+
"dark-mode",
|
|
85
|
+
"theming",
|
|
86
|
+
"glass",
|
|
87
|
+
"glassmorphism",
|
|
88
|
+
"liquid-glass",
|
|
89
|
+
"plastic",
|
|
90
|
+
"gradient",
|
|
91
|
+
"button",
|
|
92
|
+
"text-field",
|
|
93
|
+
"form"
|
|
94
|
+
],
|
|
95
|
+
"devDependencies": {
|
|
96
|
+
"@eslint/js": "^9.39.1",
|
|
97
|
+
"@tailwindcss/postcss": "^4.3.3",
|
|
98
|
+
"@types/node": "^26.2.0",
|
|
99
|
+
"@types/react": "^19.2.18",
|
|
100
|
+
"@types/react-dom": "^19.2.4",
|
|
101
|
+
"@typescript-eslint/parser": "^8.67.0",
|
|
102
|
+
"@vitejs/plugin-react": "^6.0.5",
|
|
103
|
+
"@vitest/browser": "^4.1.10",
|
|
104
|
+
"@vitest/browser-playwright": "^4.1.10",
|
|
105
|
+
"eslint": "^9.39.1",
|
|
106
|
+
"eslint-config-prettier": "^10.1.8",
|
|
107
|
+
"eslint-plugin-n": "^18.3.0",
|
|
108
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
109
|
+
"globals": "^17.10.0",
|
|
110
|
+
"jiti": "^2.7.0",
|
|
111
|
+
"playwright": "^1.62.1",
|
|
112
|
+
"postcss": "^8.5.26",
|
|
113
|
+
"prettier": "^3.9.6",
|
|
114
|
+
"prettier-plugin-tailwindcss": "^0.8.1",
|
|
115
|
+
"react": "^19.2.8",
|
|
116
|
+
"react-dom": "^19.2.8",
|
|
117
|
+
"tailwindcss": "^4.3.3",
|
|
118
|
+
"terser-glob": "^1.2.1",
|
|
119
|
+
"typescript": "^6.0.3",
|
|
120
|
+
"typescript-eslint": "^8.67.0",
|
|
121
|
+
"vite": "^8.2.1",
|
|
122
|
+
"vitepress": "^1.6.4",
|
|
123
|
+
"vitepress-i18n": "^1.3.5",
|
|
124
|
+
"vitepress-sidebar": "^1.38.0",
|
|
125
|
+
"vitest": "^4.1.10",
|
|
126
|
+
"vitest-browser-react": "^2.2.0"
|
|
127
|
+
},
|
|
128
|
+
"dependencies": {
|
|
129
|
+
"@base-ui/react": "^1.7.0"
|
|
130
|
+
},
|
|
131
|
+
"peerDependencies": {
|
|
132
|
+
"@types/react": "^18.0.0 || ^19.0.0",
|
|
133
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
134
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
135
|
+
},
|
|
136
|
+
"peerDependenciesMeta": {
|
|
137
|
+
"@types/react": {
|
|
138
|
+
"optional": true
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|