-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.59 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
{
"name": "reflexy",
"version": "3.62.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",
"vite:dev": "vite --force",
"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": "2.0.1",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@js-toolkit/configs": "3.99.1",
"@js-toolkit/react-hooks": "1.55.0",
"@js-toolkit/utils": "1.61.0",
"@js-toolkit/web-utils": "1.67.0",
"@mui/system": "7.3.7",
"@types/css-modules": "1.0.5",
"@types/eslint": "9.6.1",
"@types/react": "19.2.10",
"@vitejs/plugin-basic-ssl": "2.1.4",
"conventional-changelog-cli": "5.0.0",
"copyfiles": "2.4.1",
"csstype": "3.2.3",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-lit": "2.1.1",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"lit": "3.3.2",
"prettier": "3.8.1",
"react": "19.2.4",
"rimraf": "6.1.2",
"stylelint": "17.0.0",
"stylelint-config-css-modules": "4.6.0",
"stylelint-config-standard": "40.0.0",
"stylelint-prettier": "5.0.3",
"ts-lit-plugin": "2.0.2",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0",
"vite": "7.3.1",
"webpack": "5.104.1"
},
"peerDependencies": {
"react": ">= 19"
}
}