-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.47 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
{
"name": "@js-toolkit/styled-components",
"version": "1.22.0",
"description": "Styled react components powered by @mui/@mui/system/styled",
"author": "VZH",
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/js-toolkit/styled-components"
},
"scripts": {
"clean": "rimraf dist/*",
"copy:configs": "copyfiles package.json .npmignore README.md LICENSE ./dist/",
"minify": "node-utils-minify --replace ./dist",
"build": "npm run clean && tsc --build ./tsconfig.json && npm run minify",
"patch-publish": "yarn run build && npm version patch --no-workspaces-update -m 'v%s' && yarn run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags",
"minor-publish": "yarn run build && npm version minor --no-workspaces-update -m 'v%s' && yarn run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags"
},
"optionalDependencies": {
"@js-toolkit/node-utils": "^1.2.1"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@js-toolkit/configs": "^3.93.13",
"@js-toolkit/react-hooks": "^1.52.0",
"@js-toolkit/utils": "^1.55.1",
"@js-toolkit/web-utils": "^1.59.0",
"@mui/material": "^6.2.1",
"@mui/system": "^6.2.1",
"@types/eslint": "^9.6.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/hoist-non-react-statics": "^3.3.6",
"@types/lodash.throttle": "^4.1.9",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-is": "^19.0.0",
"@types/react-modal": "^3.16.3",
"copyfiles": "^2.4.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"lodash.throttle": "^4.1.1",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-modal": "^3.16.3",
"react-outside-click-listener": "^1.7.0",
"reflexy": "^3.57.3",
"rimraf": "^6.0.1",
"terser": "^5.37.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"yargs": "^17.7.2"
},
"peerDependencies": {
"react": ">= 19"
}
}