pixelforge-ui 1.0.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/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "pixelforge-ui",
3
+ "version": "1.0.0",
4
+ "description": "Retro-future design system with pixel-perfect components. Light & dark mode, Game Boy pastels, React + Tailwind.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.esm.js",
7
+ "types": "dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "tsup src/index.ts --format cjs,esm --dts",
10
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
11
+ "docs": "cd docs && npx http-server",
12
+ "lint": "eslint src/**/*.{ts,tsx}",
13
+ "type-check": "tsc --noEmit"
14
+ },
15
+ "keywords": [
16
+ "design-system",
17
+ "retro",
18
+ "pixelart",
19
+ "tailwind",
20
+ "react",
21
+ "components",
22
+ "ui"
23
+ ],
24
+ "author": "Your Name",
25
+ "license": "MIT",
26
+ "peerDependencies": {
27
+ "react": "^18.0.0",
28
+ "react-dom": "^18.0.0",
29
+ "tailwindcss": "^3.0.0"
30
+ },
31
+ "devDependencies": {
32
+ "@types/node": "^20.0.0",
33
+ "@types/react": "^18.0.0",
34
+ "@types/react-dom": "^18.0.0",
35
+ "autoprefixer": "^10.4.27",
36
+ "postcss": "^8.0.0",
37
+ "tailwindcss": "^3.0.0",
38
+ "tsup": "^8.5.1",
39
+ "typescript": "^5.0.0"
40
+ },
41
+ "files": [
42
+ "dist"
43
+ ],
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "https://github.com/yourusername/pixelforge-ui"
47
+ }
48
+ }
49
+
50
+
51
+