@wu-dang-clan/wu-dang-ui 0.0.0 → 0.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.
- package/README.md +23 -50
- package/package.json +12 -8
package/README.md
CHANGED
@@ -1,50 +1,23 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
##
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
},
|
25
|
-
})
|
26
|
-
```
|
27
|
-
|
28
|
-
- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
|
29
|
-
- Optionally add `...tseslint.configs.stylisticTypeChecked`
|
30
|
-
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
|
31
|
-
|
32
|
-
```js
|
33
|
-
// eslint.config.js
|
34
|
-
import react from 'eslint-plugin-react'
|
35
|
-
|
36
|
-
export default tseslint.config({
|
37
|
-
// Set the react version
|
38
|
-
settings: { react: { version: '18.3' } },
|
39
|
-
plugins: {
|
40
|
-
// Add the react plugin
|
41
|
-
react,
|
42
|
-
},
|
43
|
-
rules: {
|
44
|
-
// other rules...
|
45
|
-
// Enable its recommended rules
|
46
|
-
...react.configs.recommended.rules,
|
47
|
-
...react.configs['jsx-runtime'].rules,
|
48
|
-
},
|
49
|
-
})
|
50
|
-
```
|
1
|
+
|
2
|
+

|
3
|
+
|
4
|
+
# WU-DANG-UI
|
5
|
+
|
6
|
+
**wu-dang-clan's ui and design system**
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
## Documentation
|
11
|
+
|
12
|
+
[Chromatic](https://www.chromatic.com/library?appId=678f958b17cf67137236304d)
|
13
|
+
|
14
|
+
## Releases
|
15
|
+
|
16
|
+
[npmjs](https://www.npmjs.com/package/@wu-dang-clan/wu-dang-ui)
|
17
|
+
|
18
|
+
## Authors
|
19
|
+
|
20
|
+
- suwonthugger ([@suwonthugger](https://github.com/suwonthugger))
|
21
|
+
- jamooooong ([@jamooooong](https://github.com/jamooooong))
|
22
|
+
|
23
|
+
---
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wu-dang-clan/wu-dang-ui",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.1",
|
4
4
|
"main": "dist/cjs/index.js",
|
5
5
|
"module": "dist/esm/index.js",
|
6
6
|
"types": "dist/index.d.ts",
|
@@ -9,10 +9,10 @@
|
|
9
9
|
"README.md"
|
10
10
|
],
|
11
11
|
"dependencies": {
|
12
|
-
"
|
12
|
+
"@tailwindcss/postcss": "^4.0.0",
|
13
13
|
"class-variance-authority": "^0.7.1",
|
14
14
|
"postcss": "^8.5.1",
|
15
|
-
"tailwindcss": "^
|
15
|
+
"tailwindcss": "^4.0.0"
|
16
16
|
},
|
17
17
|
"devDependencies": {
|
18
18
|
"@babel/preset-env": "^7.26.0",
|
@@ -48,10 +48,10 @@
|
|
48
48
|
"eslint-plugin-react-hooks": "^5.0.0",
|
49
49
|
"eslint-plugin-react-refresh": "^0.4.16",
|
50
50
|
"eslint-plugin-storybook": "^0.11.2",
|
51
|
-
"react": "^19.0.0",
|
52
|
-
"react-dom": "^19.0.0",
|
53
51
|
"lint-staged": "^15.2.7",
|
54
52
|
"prettier": "^3.2.5",
|
53
|
+
"react": "^19.0.0",
|
54
|
+
"react-dom": "^19.0.0",
|
55
55
|
"rollup": "^4.30.1",
|
56
56
|
"rollup-plugin-dts": "^6.1.1",
|
57
57
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
@@ -68,9 +68,12 @@
|
|
68
68
|
"description": "wu-dang-clan's design system",
|
69
69
|
"repository": {
|
70
70
|
"type": "git",
|
71
|
-
"url": "git+https://github.com/wu-dang-clan/wu-dang-ui"
|
71
|
+
"url": "git+https://github.com/wu-dang-clan/wu-dang-ui.git"
|
72
|
+
},
|
73
|
+
"author": {
|
74
|
+
"name": "wu-dang-clan",
|
75
|
+
"email": "woonini606@gmail.com"
|
72
76
|
},
|
73
|
-
"author": "wu-dang-clan <woonini606@gmail.com>",
|
74
77
|
"license": "MIT",
|
75
78
|
"bugs": {
|
76
79
|
"url": "https://github.com/wu-dang-clan/wu-dang-ui/issues"
|
@@ -87,6 +90,7 @@
|
|
87
90
|
"preview": "vite preview",
|
88
91
|
"storybook": "storybook dev -p 6006",
|
89
92
|
"build-storybook": "storybook build",
|
90
|
-
"scripts.release": "rollup -c && auto shipit"
|
93
|
+
"scripts.release": "rollup -c && auto shipit",
|
94
|
+
"chromatic": "npx chromatic --project-token=chpt_b2b3c869dff2882"
|
91
95
|
}
|
92
96
|
}
|