-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.43 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": "reflexy",
"version": "3.55.0",
"description": "Flexbox layout react components",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"author": "VZH",
"license": "MIT",
"homepage": "https://github.com/vlazh/reflexy",
"repository": {
"type": "git",
"url": "https://github.com/vlazh/reflexy"
},
"bugs": {
"url": "https://github.com/vlazh/reflexy/issues"
},
"keywords": [
"react",
"flexbox",
"flex",
"layout"
],
"scripts": {
"clean": "rimraf dist/*",
"copy:configs": "copyfiles package.json README.md LICENSE CHANGELOG.md .npmignore ./dist/",
"copy:css": "copyfiles ./src/**/*.css --up 1 ./dist/",
"build-ts": "tsc --build tsconfig.json",
"build": "npm run clean && npm run build-ts && npm run copy:css",
"patch-publish": "npm run build && npm version patch --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish && git push --follow-tags",
"minor-publish": "npm run build && npm version minor --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish && git push --follow-tags",
"version": "conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md",
"changelog": "conventional-changelog --config ./changelog.config.js -i CHANGELOG.md -s"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@js-toolkit/configs": "^3.93.3",
"@js-toolkit/utils": "^1.54.0",
"@mui/system": "^5.16.6",
"@types/css-modules": "^1.0.5",
"@types/eslint": "^9.6.0",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.3",
"conventional-changelog-cli": "^5.0.0",
"copyfiles": "^2.4.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "5.1.0-rc-fb9a90fa48-20240614",
"prettier": "^3.3.3",
"react": "^18.3.1",
"rimraf": "^6.0.1",
"stylelint": "^16.8.1",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0",
"webpack": "^5.93.0"
},
"peerDependencies": {
"react": ">= 16.8.x"
}
}