-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.99 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.99 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "simple-react-ui-kit",
"version": "1.7.12",
"description": "A lightweight and flexible UI framework for building responsive React applications with customizable components.",
"repository": "https://github.com/miksrv/simple-react-ui-kit.git",
"keywords": [
"react",
"ui-kit",
"typescript",
"responsive",
"lightweight",
"customizable",
"react-components"
],
"author": "Misha Topchilo <20854498+miksrv@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"changeset": "npx changeset",
"changeversion": "npx changeset version",
"release": "changeset publish",
"test": "TZ=UTC jest",
"test:coverage": "TZ=UTC jest --coverage",
"test:watch": "TZ=UTC jest --watch --testNamePattern Select",
"eslint:check": "eslint",
"eslint:fix": "eslint --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"publishConfig": {
"access": "public"
},
"type": "module",
"access": "public",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/identity-obj-proxy": "^3.0.2",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"postcss-sass": "^0.5.0",
"prettier": "^3.8.1",
"rollup": "^4.59.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"dependencies": {
"dayjs": "^1.11.20",
"lodash-es": "^4.17.23",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"packageManager": "yarn@4.9.1"
}