-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.97 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.97 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": "@tkxs/cast-ui",
"version": "6.0.0",
"author": "tkxs",
"description": "React component library for the TKXS design system",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/telus-agcg/cast-ui"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b ./tsconfig.lib.json && vite build",
"lint": "eslint .",
"preview": "vite preview",
"prebuild": "rm -rf dist",
"prepublish": "npm run build",
"start": "storybook dev -p 6006",
"build-static": "npm run build && storybook build",
"semantic-release": "semantic-release"
},
"files": [
"dist"
],
"main": "./dist/cast-ui.umd.cjs",
"types": "./dist/cast-ui.d.ts",
"module": "./dist/cast-ui.js",
"exports": {
".": {
"import": "./dist/cast-ui.js",
"require": "./dist/cast-ui.umd.js"
}
},
"sideEffects": [
"**/*.css"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"styled-components": "^6.1.16"
},
"dependencies": {
"@fontsource-variable/roboto": "^5.2.5",
"@tippyjs/react": "^4.2.6",
"@types/react-modal": "^3.16.3",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-collapsed": "^4.2.0",
"react-datepicker": "^8.1.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-modal": "^3.16.3",
"react-select": "^5.10.0",
"react-tabs": "^6.1.0",
"semantic-release": "^24.2.3",
"styled-components": "^6.1.16"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@eslint/js": "^9.22.0",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@storybook/addon-a11y": "^9.0.18",
"@storybook/addon-onboarding": "^9.0.18",
"@storybook/addon-themes": "^9.0.18",
"@storybook/react-vite": "^9.0.18",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitejs/plugin-react": "^4.3.4",
"commit-analyzer-fail-on-no-release": "^2.0.0",
"eslint": "^9.22.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-storybook": "^9.0.18",
"globals": "^15.15.0",
"storybook": "^9.0.18",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"uuid": "^11.1.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-lib-inject-css": "^2.2.1",
"vite-tsconfig-paths": "^5.1.4",
"@storybook/addon-docs": "^9.0.18"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}