@popgrids/ui 0.0.1 → 0.0.4

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 CHANGED
@@ -1,53 +1,76 @@
1
1
  {
2
+ "author": "PopGrids",
3
+ "dependencies": {
4
+ "@fontsource-variable/inter": "^5.0.0",
5
+ "@fontsource/poppins": "^5.0.0",
6
+ "class-variance-authority": "^0.7.0",
7
+ "clsx": "^2.1.1",
8
+ "tailwind-merge": "^2.5.5"
9
+ },
10
+ "description": "A modern, production-ready React UI component library based on shadcn/ui principles, built with Base UI primitives and optimized for tree-shaking.",
11
+ "devDependencies": {
12
+ "@changesets/cli": "^2.29.8",
13
+ "@types/node": "^25.0.3",
14
+ "@types/react": "^19.0.0",
15
+ "@types/react-dom": "^19.0.0",
16
+ "react": "^19.0.0",
17
+ "react-dom": "^19.0.0",
18
+ "shadcn": "^3.6.2",
19
+ "tailwindcss": "^4.0.0",
20
+ "tsup": "^8.3.5",
21
+ "typescript": "^5.6.3"
22
+ },
23
+ "exports": {
24
+ ".": {
25
+ "import": {
26
+ "types": "./dist/index.d.ts",
27
+ "default": "./dist/index.js"
28
+ },
29
+ "require": {
30
+ "types": "./dist/index.d.ts",
31
+ "default": "./dist/index.cjs"
32
+ }
33
+ },
34
+ "./theme.css": "./dist/theme.css"
35
+ },
36
+ "files": [
37
+ "dist"
38
+ ],
39
+ "keywords": [
40
+ "react",
41
+ "ui",
42
+ "components",
43
+ "tailwind",
44
+ "tailwindcss",
45
+ "shadcn",
46
+ "base-ui",
47
+ "tree-shakeable",
48
+ "typescript"
49
+ ],
50
+ "license": "UNLICENSED",
51
+ "main": "./dist/index.cjs",
52
+ "module": "./dist/index.js",
2
53
  "name": "@popgrids/ui",
3
- "version": "0.0.1",
54
+ "peerDependencies": {
55
+ "@base-ui/react": "^1.0.0",
56
+ "react": "^19.0.0",
57
+ "react-dom": "^19.0.0",
58
+ "shadcn": "^3.6.2",
59
+ "tailwindcss": "^4.0.0"
60
+ },
4
61
  "private": false,
5
- "type": "module",
6
- "main": "dist/index.cjs",
7
- "module": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "license": "UNLICENSED",
10
62
  "publishConfig": {
11
63
  "access": "public"
12
64
  },
13
65
  "repository": {
14
66
  "type": "git",
15
- "url": "git+https://github.com/popgrids/popgrids-turborepo.git"
67
+ "url": "git+https://github.com/popgrids/popgrids-ui.git"
16
68
  },
17
- "author": "Popgrids",
18
- "homepage": "https://github.com/popgrids/popgrids-turborepo/tree/main/packages/ui#readme",
69
+ "sideEffects": false,
70
+ "type": "module",
71
+ "types": "./dist/index.d.ts",
72
+ "version": "0.0.4",
19
73
  "scripts": {
20
- "build": "tsup",
21
- "dev": "tsup --watch",
22
- "clean": "rm -rf .turbo node_modules dist",
23
- "lint": "eslint . --max-warnings 0",
24
- "test": "web-test-runner src/**/*.test.ts --node-resolve",
25
- "generate:component": "turbo gen ui:component",
26
- "check-types": "tsc --noEmit"
27
- },
28
- "devDependencies": {
29
- "@open-wc/testing": "^4.0.0",
30
- "@popgrids/eslint-config": "*",
31
- "@types/mocha": "^10.0.10",
32
- "@web/dev-server-esbuild": "^0.4.4",
33
- "@web/test-runner": "^0.18.0",
34
- "eslint": "^9.21.0",
35
- "tslib": "^2.8.1",
36
- "tsup": "^8.4.0",
37
- "typescript": "5.8.2"
38
- },
39
- "dependencies": {
40
- "@popgrids/theme": "*",
41
- "lit": "^3.2.1"
42
- },
43
- "exports": {
44
- ".": {
45
- "types": "./dist/index.d.ts",
46
- "import": "./dist/index.js",
47
- "require": "./dist/index.cjs"
48
- }
49
- },
50
- "files": [
51
- "dist"
52
- ]
53
- }
74
+ "build": "tsup"
75
+ }
76
+ }
Binary file