@nextlevel_korea/design-system 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -7,14 +7,14 @@ TypeScript와 Tailwind CSS로 구축된 현대적인 React 디자인 시스템
7
7
  ### 설치
8
8
 
9
9
  ```bash
10
- npm install @nextlevel/design-system
10
+ npm install @nextlevel_korea/design-system
11
11
  ```
12
12
 
13
13
  ### 기본 사용법
14
14
 
15
15
  ```tsx
16
- import { Header } from '@nextlevel/design-system';
17
- import '@nextlevel/design-system/styles';
16
+ import { Header } from '@nextlevel_korea/design-system';
17
+ import '@nextlevel_korea/design-system/styles';
18
18
 
19
19
  function App() {
20
20
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextlevel_korea/design-system",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "A modern React design system built with TypeScript and Tailwind CSS - The NextLevel Design System",
6
6
  "keywords": [
@@ -30,7 +30,7 @@
30
30
  "scripts": {
31
31
  "dev": "vite",
32
32
  "build": "tsc -b && vite build",
33
- "build:lib": "tsc && vite build --config vite.lib.config.ts",
33
+ "build:lib": "tsc -p tsconfig.lib.json && vite build --config vite.lib.config.ts",
34
34
  "lint": "eslint .",
35
35
  "preview": "vite preview",
36
36
  "tw:init": "tailwindcss init -p",