-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.67 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
87
88
89
90
91
92
93
94
95
96
{
"name": "@mj-studio/react-design-toolkit",
"version": "1.4.1",
"description": "A React Design Toolkit top of the chakra ui",
"repository": {
"type": "git",
"url": "git+https://github.com/mj-studio-library/react-design-toolkit.git"
},
"homepage": "https://github.com/mj-studio-library/react-design-toolkit",
"scripts": {
"t": "eslint src --ext .ts,.tsx,.js,.jsx && yarn tsc",
"build": "rm -rf dist && rm -rf esm && rollup --config rollup.config.mjs",
"release": "yarn t && zx tool/publish.mjs",
"icon": "zx tool/svg_gen.mjs",
"prepare": "husky"
},
"bin": {
"theme": "bin/theme.js"
},
"dependencies": {
"@mj-studio/js-util": "^1.0.19",
"@mj-studio/react-util": "^0.0.20"
},
"devDependencies": {
"@chakra-ui/cli": "^2.5.6",
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^2.10.4",
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mj-studio/eslint-config-react": "^1.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@svgr/cli": "^8.1.0",
"@types/react": "^18.2.20",
"@types/styled-system": "^5.1.22",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"framer-motion": "^11.0.8",
"husky": "^9.0.11",
"next": ">=14",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.12.1",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-preserve-directives": "^0.4.0",
"rollup-plugin-typescript2": "^0.36.0",
"styled-components": "^6.1.8",
"styled-system": "^5.1.5",
"typescript": "5.3.3",
"zx": "^7.2.3"
},
"peerDependencies": {
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^2.10.4",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"framer-motion": "^11.0.8",
"next": ">=14",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"styled-components": "^6.1.8",
"styled-system": "^5.1.5"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist",
"esm"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"author": "MJ Studio",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}