-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.1 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.1 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@team-numberone/design-system",
"version": "1.0.3",
"description": "Daepyro Design System",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist"
],
"scripts": {
"check": "biome check --write ./src",
"lint": "biome lint --write ./src",
"format": "biome format --write ./src",
"check:ci": "biome check ./src",
"lint:ci": "biome lint ./src",
"build": "vite build",
"prepublishOnly": "pnpm build",
"test": "vitest",
"test:unit": "vitest run --config vitest.config.ts",
"test:all": "vitest run --config vitest.config.ts",
"test:coverage": "vitest run --coverage --project unit",
"test:ui": "vitest --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
"optimize:svgs": "pnpm exec svgo -f assets/svgs -o assets/svgs",
"generate:icons": "pnpm exec svgr --config-file svgr.config.cjs --typescript --icon --out-dir src/icons assets/svgs && node scripts/post-process-icons.cjs && node scripts/update-icons-index.cjs",
"prepare": "husky"
},
"keywords": [
"design-system",
"react",
"components",
"ui"
],
"author": "Team NumberOne",
"license": "ISC",
"homepage": "https://team-numberone.github.io/daepyro-design-system/",
"bugs": {
"url": "https://github.com/Team-NumberOne/daepyro-design-system/issues"
},
"packageManager": "pnpm@10.19.0",
"repository": {
"type": "git",
"url": "https://github.com/Team-NumberOne/daepyro-design-system.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@storybook/addon-a11y": "^10.0.8",
"@storybook/addon-docs": "^10.0.8",
"@storybook/addon-vitest": "^10.0.8",
"@storybook/react": "^10.0.8",
"@storybook/react-vite": "^10.0.8",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@svgr/cli": "^8.1.0",
"@vanilla-extract/vite-plugin": "^5.1.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"@vitest/browser-playwright": "4.0.13",
"@vitest/coverage-v8": "4.0.13",
"@vitest/ui": "^4.0.13",
"chromatic": "^13.3.4",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"playwright": "^1.56.1",
"prettier": "^3.6.2",
"storybook": "^10.0.8",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.13",
"svgo": "^3.0.2"
},
"dependencies": {
"@vanilla-extract/css": "^1.17.5",
"pretendard": "^1.3.9"
}
}