@nextlevel_korea/design-system 1.1.5 → 2.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 CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "name": "@nextlevel_korea/design-system",
3
- "version": "1.1.5",
4
- "type": "module",
3
+ "version": "2.0.0",
5
4
  "description": "A modern React design system built with TypeScript and Tailwind CSS - The NextLevel Design System",
6
5
  "keywords": [
7
6
  "nextlevel"
@@ -28,11 +27,12 @@
28
27
  "README.md"
29
28
  ],
30
29
  "scripts": {
31
- "dev": "vite",
32
- "build": "tsc -b && vite build",
33
- "build:lib": "vite build --config vite.lib.config.ts && tsc -p tsconfig.lib.json --emitDeclarationOnly",
34
- "lint": "eslint .",
35
- "preview": "vite preview",
30
+ "dev": "next dev",
31
+ "build": "next build",
32
+ "build:lib": "tsc -p tsconfig.lib.json --emitDeclarationOnly && next build",
33
+ "start": "next start",
34
+ "lint": "next lint",
35
+ "export": "next build && next export",
36
36
  "tw:init": "tailwindcss init -p",
37
37
  "prepublishOnly": "npm run build:lib",
38
38
  "storybook": "storybook dev -p 6006",
@@ -44,6 +44,9 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "clsx": "^2.1.1",
47
+ "next": "^15.4.2",
48
+ "react": "^18.0.0 || ^19.0.0",
49
+ "react-dom": "^18.0.0 || ^19.0.0",
47
50
  "tailwind-merge": "^3.3.1"
48
51
  },
49
52
  "devDependencies": {
@@ -53,23 +56,21 @@
53
56
  "@storybook/react-vite": "^9.0.18",
54
57
  "@tailwindcss/forms": "^0.5.7",
55
58
  "@tailwindcss/typography": "^0.5.9",
59
+ "@types/node": "^22.0.0",
56
60
  "@types/react": "^19.1.8",
57
61
  "@types/react-dom": "^19.1.6",
58
- "@vitejs/plugin-react": "^4.6.0",
59
62
  "autoprefixer": "^10.4.14",
60
63
  "eslint": "^9.30.1",
64
+ "eslint-config-next": "^15.0.0",
61
65
  "eslint-plugin-react-hooks": "^5.2.0",
62
66
  "eslint-plugin-react-refresh": "^0.4.20",
63
67
  "eslint-plugin-storybook": "^9.0.18",
64
68
  "globals": "^16.3.0",
65
69
  "postcss": "^8.4.38",
66
- "react": "^19.1.0",
67
- "react-dom": "^19.1.0",
68
70
  "storybook": "^9.0.18",
69
71
  "tailwindcss": "^3.4.3",
70
72
  "ts-node": "^10.9.2",
71
73
  "typescript": "~5.8.3",
72
- "typescript-eslint": "^8.35.1",
73
- "vite": "^5.4.19"
74
+ "typescript-eslint": "^8.35.1"
74
75
  }
75
76
  }