-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.8 KB
/
package.json
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
{
"name": "@krds-ui/react",
"description": "React library of South Korean digital government service UI/UX guidelines.",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "lerna run dev",
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"clean": "lerna clean",
"version:release": "lerna version --no-private",
"publish:release": "lerna publish --yes --no-private",
"bundlewatch": "bundlewatch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"krds",
"korea design system",
"korea web design",
"design system",
"component library"
],
"author": "Lukas.J.Han <lukas.j.han@gmail.com>",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/KRDS-community/krds-react"
},
"bugs": {
"url": "https://github.com/KRDS-community/krds-react/issues"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-essentials": "^8.2.7",
"@storybook/addon-interactions": "^8.2.7",
"@storybook/addon-links": "^8.2.7",
"@storybook/addon-onboarding": "^8.2.7",
"@storybook/blocks": "^8.2.7",
"@storybook/react": "^8.2.7",
"@storybook/react-vite": "^8.2.7",
"@storybook/test": "^8.2.7",
"@types/node": "^22.0.0",
"bundlewatch": "^0.4.0",
"lerna": "^8.1.7",
"storybook": "^8.2.7",
"tsx": "^4.16.2",
"typescript": "^5.2.2",
"vite": "^5.3.4"
},
"bundlewatch": {
"trackBranches": [
"main"
],
"files": [
{
"path": "./packages/*/dist/index.*.js",
"maxSize": "100 KB"
},
{
"path": "./packages/*/dist/style.css",
"maxSize": "100 KB"
}
]
}
}