@anyemp/ui-kit 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -0
- package/dist/avatar.png +0 -0
- package/dist/index.d.ts +2435 -0
- package/dist/logo.png +0 -0
- package/dist/ui-kit.css +1 -0
- package/dist/ui-kit.es.js +8888 -0
- package/dist/ui-kit.es.js.map +1 -0
- package/dist/ui-kit.umd.js +7 -0
- package/dist/ui-kit.umd.js.map +1 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@anyemp/ui-kit",
|
|
3
|
+
"version": "1.3.1",
|
|
4
|
+
"description": "React UI component library built with Vite and TypeScript",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.css"
|
|
8
|
+
],
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"main": "./dist/ui-kit.umd.js",
|
|
13
|
+
"module": "./dist/ui-kit.es.js",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/ui-kit.es.js",
|
|
19
|
+
"require": "./dist/ui-kit.umd.js"
|
|
20
|
+
},
|
|
21
|
+
"./styles": "./dist/ui-kit.css"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "vite",
|
|
28
|
+
"build": "vite build",
|
|
29
|
+
"prepublishOnly": "npm run lint && npm run build",
|
|
30
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
31
|
+
"preview": "vite preview",
|
|
32
|
+
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
|
|
33
|
+
"storybook": "storybook dev -p 6006",
|
|
34
|
+
"build-storybook": "storybook build",
|
|
35
|
+
"create-theme": "node scripts/create-project-theme.js",
|
|
36
|
+
"csv-to-theme": "node scripts/csv-to-theme.js",
|
|
37
|
+
"test": "vitest run --project unit",
|
|
38
|
+
"test:watch": "vitest --project unit",
|
|
39
|
+
"release:patch": "npm version patch && git push --follow-tags && npm publish",
|
|
40
|
+
"release:minor": "npm version minor && git push --follow-tags && npm publish",
|
|
41
|
+
"release:major": "npm version major && git push --follow-tags && npm publish"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"react",
|
|
45
|
+
"ui",
|
|
46
|
+
"components",
|
|
47
|
+
"library",
|
|
48
|
+
"vite",
|
|
49
|
+
"typescript"
|
|
50
|
+
],
|
|
51
|
+
"author": "",
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"react": "^19.0.0",
|
|
55
|
+
"react-dom": "^19.0.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@chromatic-com/storybook": "^4.1.3",
|
|
59
|
+
"@storybook/addon-a11y": "^10.1.0",
|
|
60
|
+
"@storybook/addon-docs": "^10.1.0",
|
|
61
|
+
"@storybook/addon-onboarding": "^10.1.0",
|
|
62
|
+
"@storybook/addon-vitest": "^10.1.0",
|
|
63
|
+
"@storybook/react-vite": "^10.1.0",
|
|
64
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
65
|
+
"@testing-library/react": "^16.3.2",
|
|
66
|
+
"@testing-library/user-event": "^14.6.1",
|
|
67
|
+
"@types/node": "^25.0.3",
|
|
68
|
+
"@types/react": "^19.2.7",
|
|
69
|
+
"@types/react-dom": "^19.2.3",
|
|
70
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
71
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
72
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
73
|
+
"@vitest/browser-playwright": "^4.0.14",
|
|
74
|
+
"@vitest/coverage-v8": "^4.0.14",
|
|
75
|
+
"eslint": "^8.57.0",
|
|
76
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
77
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
78
|
+
"eslint-plugin-storybook": "^10.1.0",
|
|
79
|
+
"jsdom": "^25.0.1",
|
|
80
|
+
"playwright": "^1.57.0",
|
|
81
|
+
"prettier": "^3.2.5",
|
|
82
|
+
"react": "^19.0.0",
|
|
83
|
+
"react-dom": "^19.0.0",
|
|
84
|
+
"storybook": "^10.1.0",
|
|
85
|
+
"typescript": "^5.9.3",
|
|
86
|
+
"vite": "^7.3.1",
|
|
87
|
+
"vite-plugin-dts": "^3.8.1",
|
|
88
|
+
"vite-plugin-static-copy": "^3.1.4",
|
|
89
|
+
"vitest": "^4.0.14"
|
|
90
|
+
},
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"react-icons": "^5.5.0"
|
|
93
|
+
}
|
|
94
|
+
}
|