atomos_next_genesis 1.0.1 → 1.0.3

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,84 +1,73 @@
1
1
  {
2
2
  "name": "atomos_next_genesis",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "private": false,
5
5
  "description": "list of components for your project",
6
6
  "keywords": [
7
7
  "component",
8
- "library",
9
- "nextjs",
10
- "typescript"
8
+ "ui-library",
9
+ "react",
10
+ "typescript",
11
+ "tailwind"
11
12
  ],
12
13
  "homepage": "https://github.com/atomostechhq/genesis#readme",
13
14
  "bugs": {
14
15
  "url": "https://github.com/atomostechhq/genesis/issues"
15
16
  },
16
17
  "repository": {
18
+ "type": "git",
17
19
  "url": "git+https://github.com/atomostechhq/genesis.git"
18
20
  },
19
21
  "license": "MIT",
20
- "author": "riya",
22
+ "author": "riya, kajal",
21
23
  "type": "module",
22
24
  "exports": {
23
25
  ".": {
26
+ "types": "./dist/index.d.ts",
24
27
  "import": "./dist/index.js",
25
- "require": "./dist/index.cjs",
26
- "types": "./dist/index.d.ts"
28
+ "require": "./dist/index.cjs"
27
29
  },
28
30
  "./style": {
29
31
  "import": "./dist/index.css",
30
32
  "require": "./dist/index.css"
31
33
  }
32
34
  },
33
- "main": "dist/index.js",
35
+ "main": "dist/index.cjs",
34
36
  "types": "dist/index.d.ts",
35
37
  "files": [
36
- "dist/**/*"
38
+ "dist"
37
39
  ],
38
40
  "scripts": {
39
41
  "dev": "next dev",
42
+ "build": "npm run clean && tsup && npm run build:css",
40
43
  "build:css": "postcss app/globals.css -o dist/index.css",
41
- "prepare": "npm run build",
42
- "start": "next start",
43
- "lint": "next lint",
44
44
  "clean": "rm -rf dist",
45
- "build": "tsup && npm run build:css"
45
+ "prepare": "npm run build"
46
46
  },
47
47
  "dependencies": {
48
48
  "@remixicon/react": "^4.2.0",
49
49
  "class-variance-authority": "^0.7.0",
50
50
  "clsx": "^2.1.0",
51
- "esbuild-css-modules-plugin": "^3.1.2",
52
- "next": "^14.2.3",
53
- "react": "^18",
54
- "react-dom": "^18",
55
- "tailwind-merge": "^2.2.2",
56
- "tsup": "^8.0.2"
51
+ "tailwind-merge": "^2.2.2"
57
52
  },
58
53
  "devDependencies": {
59
- "@babel/core": "^7.24.5",
60
- "@babel/preset-env": "^7.24.5",
61
- "@rollup/plugin-babel": "^6.0.4",
62
- "@rollup/plugin-commonjs": "^25.0.7",
63
- "@rollup/plugin-node-resolve": "^15.2.3",
64
- "@rollup/plugin-typescript": "^11.1.6",
65
- "@types/node": "^20",
54
+ "react": "^18.2.0",
55
+ "react-dom": "^18.2.0",
56
+ "next": "^14.2.3",
57
+ "typescript": "^5",
66
58
  "@types/react": "^18",
67
59
  "@types/react-dom": "^18",
68
- "autoprefixer": "^10.4.19",
69
- "eslint": "^8",
70
- "eslint-config-next": "14.2.1",
60
+ "@types/node": "^20",
61
+ "tsup": "^8.0.2",
62
+ "tailwindcss": "^3.4.3",
71
63
  "postcss": "^8.4.38",
72
64
  "postcss-cli": "^11.0.0",
73
- "rollup-plugin-dts": "^6.1.0",
74
- "rollup-plugin-peer-deps-external": "^2.2.4",
75
- "rollup-plugin-postcss": "^4.0.2",
76
- "tailwindcss": "^3.4.3",
77
- "typescript": "^5"
65
+ "autoprefixer": "^10.4.19",
66
+ "eslint": "^8"
78
67
  },
79
68
  "peerDependencies": {
80
- "react": "^18",
81
- "react-dom": "^18"
69
+ "react": ">=17 <20",
70
+ "react-dom": ">=17 <20"
82
71
  },
83
- "module": "dist/index.mjs"
72
+ "module": "dist/index.js"
84
73
  }