@idbrnd/design-system 1.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 ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@idbrnd/design-system",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ },
14
+ "./style.css": "./dist/style.css"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "sideEffects": [
20
+ "**/*.css"
21
+ ],
22
+ "scripts": {
23
+ "build": "npm run build:js && npm run build:types",
24
+ "build:js": "vite build",
25
+ "build:types": "tsc -p tsconfig.build.json",
26
+ "typecheck": "tsc --noEmit",
27
+ "prepack": "npm run build",
28
+ "build:tokens": "node build.js"
29
+ },
30
+ "keywords": [],
31
+ "author": "",
32
+ "license": "ISC",
33
+ "description": "디자인 시스템 적용 컴포넌트 라이브러리화를 위한 폴더",
34
+ "peerDependencies": {
35
+ "react": "^18.3.1",
36
+ "react-dom": "^18.3.1"
37
+ },
38
+ "devDependencies": {
39
+ "@types/node": "^25.3.0",
40
+ "@types/react": "^18.3.0",
41
+ "@types/react-dom": "^18.3.0",
42
+ "@vitejs/plugin-react": "^5.1.2",
43
+ "react": "^18.3.1",
44
+ "react-dom": "^18.3.1",
45
+ "typescript": "^5.9.3",
46
+ "vite": "^7.3.0",
47
+ "vite-plugin-dts": "^4.5.4",
48
+ "vite-plugin-lib-inject-css": "^2.2.2"
49
+ },
50
+ "dependencies": {
51
+ "style-dictionary": "^5.3.1"
52
+ }
53
+ }