@agenticindiedev/ui 0.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/package.json ADDED
@@ -0,0 +1,105 @@
1
+ {
2
+ "author": "indieui",
3
+ "dependencies": {
4
+ "class-variance-authority": "0.7.1",
5
+ "clsx": "2.1.1",
6
+ "tailwind-merge": "3.4.0"
7
+ },
8
+ "description": "IndieUI - Modern React component library",
9
+ "devDependencies": {
10
+ "@happy-dom/global-registrator": "20.0.11",
11
+ "@storybook/addon-essentials": "8.6.14",
12
+ "@storybook/addon-interactions": "8.6.14",
13
+ "@storybook/addon-links": "10.1.10",
14
+ "@storybook/blocks": "8.6.14",
15
+ "@storybook/react": "10.1.10",
16
+ "@storybook/react-vite": "10.1.10",
17
+ "@storybook/test": "8.6.14",
18
+ "@tailwindcss/postcss": "4.1.18",
19
+ "@testing-library/jest-dom": "^6.9.1",
20
+ "@testing-library/react": "16.3.1",
21
+ "@types/bun": "1.3.5",
22
+ "@types/node": "25.0.3",
23
+ "@types/react": "19.2.7",
24
+ "@types/react-dom": "19.2.3",
25
+ "@typescript-eslint/eslint-plugin": "8.50.1",
26
+ "@typescript-eslint/parser": "8.50.1",
27
+ "@vitejs/plugin-react": "5.1.2",
28
+ "ajv": "8.17.1",
29
+ "autoprefixer": "10.4.23",
30
+ "eslint": "9.39.2",
31
+ "eslint-config-prettier": "10.1.8",
32
+ "eslint-plugin-prettier": "5.5.4",
33
+ "eslint-plugin-react": "7.37.5",
34
+ "eslint-plugin-react-hooks": "7.0.1",
35
+ "postcss": "8.5.6",
36
+ "postcss-cli": "11.0.1",
37
+ "prettier": "3.7.4",
38
+ "react": "19.2.3",
39
+ "react-dom": "19.2.3",
40
+ "storybook": "10.1.10",
41
+ "tailwindcss": "4.1.18",
42
+ "typescript": "5.9.3",
43
+ "vite": "7.3.0",
44
+ "vite-plugin-dts": "4.5.4"
45
+ },
46
+ "exports": {
47
+ ".": {
48
+ "types": "./dist/index.d.ts",
49
+ "import": "./dist/index.js",
50
+ "require": "./dist/index.cjs"
51
+ },
52
+ "./styles.css": "./dist/styles.css"
53
+ },
54
+ "files": [
55
+ "dist"
56
+ ],
57
+ "keywords": [
58
+ "react",
59
+ "components",
60
+ "ui",
61
+ "tailwind",
62
+ "indieui"
63
+ ],
64
+ "license": "MIT",
65
+ "main": "./dist/index.cjs",
66
+ "module": "./dist/index.js",
67
+ "name": "@agenticindiedev/ui",
68
+ "packageManager": "bun@1.1.14",
69
+ "peerDependencies": {
70
+ "react": "18.0.0 || ^19.0.0",
71
+ "react-dom": "18.0.0 || ^19.0.0"
72
+ },
73
+ "publishConfig": {
74
+ "access": "public",
75
+ "registry": "https://registry.npmjs.org"
76
+ },
77
+ "repository": {
78
+ "type": "git",
79
+ "url": "https://github.com/agenticindiedev/indieui"
80
+ },
81
+ "scripts": {
82
+ "build": "bun run build:lib && bun run build:css",
83
+ "build-storybook": "storybook build",
84
+ "build:css": "bunx postcss ./src/styles/globals.css -o ./dist/styles.css --verbose",
85
+ "build:lib": "vite build",
86
+ "dev": "storybook dev -p 6006",
87
+ "format:check": "prettier --check .",
88
+ "format:fix": "prettier --write .",
89
+ "lint:check": "eslint .",
90
+ "lint:fix": "eslint . --fix",
91
+ "pre:install": "bun update --latest --recursive && bun install",
92
+ "prepare": "bun run build",
93
+ "prepare:deploy": "bun run format:fix && bun run lint:fix && bun run build",
94
+ "prepublishOnly": "bun run build",
95
+ "storybook": "storybook dev -p 6006",
96
+ "test": "bun test",
97
+ "typecheck": "tsc --noEmit"
98
+ },
99
+ "sideEffects": [
100
+ "**/*.css"
101
+ ],
102
+ "type": "module",
103
+ "types": "./dist/index.d.ts",
104
+ "version": "0.1.0"
105
+ }