-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.57 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@powerws/uikit",
"version": "0.224.0",
"type": "module",
"repository": "https://github.com/PowerWorkspace/UiKit",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/ node_modules/.cache/ ",
"build": "rm -rf dist/ && mkdir dist/ && tsc && vite build",
"deploy": "npm version minor --force && npm run build && npm publish --access public",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "prettier --write . && eslint . --fix",
"bung": "node büng/src/bung.js"
},
"dependencies": {
"@storybook/test": "^8.0.8",
"@types/lodash": "^4.14.202",
"clsx": "^2.1.0",
"lodash-es": "^4.17.21",
"react": "^18.x",
"react-detect-click-outside": "^1.1.7",
"react-dom": "^18.x",
"styled-components": "^6.1.8"
},
"peerDependencies": {
"react": "^18.x",
"react-dom": "^18.x"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@chromatic-com/storybook": "^1",
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.1.1",
"@storybook/addon-actions": "^8.0.8",
"@storybook/addon-essentials": "^8.0.8",
"@storybook/addon-interactions": "^8.0.8",
"@storybook/addon-links": "^8.0.8",
"@storybook/addon-mdx-gfm": "^8.0.8",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-styling": "^1.3.7",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.0.8",
"@storybook/react-vite": "^8.0.8",
"@types/prop-types": "^15.7.11",
"@types/react": "^18.2.52",
"@types/react-dom": "^18.2.18",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@vitejs/plugin-react": "^4.2.1",
"babel-loader": "^9.1.3",
"bung": "file:./büng/",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.0.0",
"prettier": "^3.2.4",
"prop-types": "^15.8.1",
"sass": "^1.70.0",
"storybook": "^8.0.8",
"storybook-dark-mode": "^4.0.1",
"typescript": "*",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2"
},
"main": "./dist/uikit.umd.js",
"module": "./dist/uikit.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": {
"import": "./dist/uikit.es.js",
"require": "./dist/uikit.umd.js",
"types": "./dist/index.d.ts"
},
"./styling": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
}
}