@eml-payments/ui-kit 0.1.0

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +74 -0
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # apprepo.template
2
+ Template for new app repos
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@eml-payments/ui-kit",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "ARLO UIKit",
6
+ "homepage": "https://github.com/EML-Payments/arlo.npm.uikit#readme",
7
+ "bugs": {
8
+ "url": "https://github.com/EML-Payments/arlo.npm.uikit/issues"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/EML-Payments/arlo.npm.uikit.git"
13
+ },
14
+ "license": "MIT",
15
+ "author": "EML Payments",
16
+ "type": "commonjs",
17
+ "main": "dist/index.js",
18
+ "types": "dist/index.d.ts",
19
+ "directories": {
20
+ "doc": "docs",
21
+ "lib": "lib"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "storybook": "storybook dev -p 6006",
28
+ "build-storybook": "storybook build",
29
+ "build": "tsc",
30
+ "lint": "eslint . --ext .ts,.tsx --fix",
31
+ "prepare": "husky install"
32
+ },
33
+ "dependencies": {
34
+ "@radix-ui/react-checkbox": "^1.3.2",
35
+ "@radix-ui/react-label": "^2.1.7",
36
+ "@radix-ui/react-radio-group": "^1.3.7",
37
+ "@radix-ui/react-slot": "^1.2.3",
38
+ "@radix-ui/react-switch": "^1.2.5",
39
+ "@radix-ui/react-tooltip": "^1.2.7",
40
+ "@tanstack/react-table": "^8.12.0",
41
+ "class-variance-authority": "^0.7.1",
42
+ "clsx": "^2.1.1",
43
+ "lucide-react": "^0.525.0",
44
+ "react": ">=18.0.0",
45
+ "react-dom": ">=18.0.0",
46
+ "tailwind-merge": "^3.3.1",
47
+ "tailwindcss": "^3.4.1",
48
+ "tailwindcss-animate": "^1.0.7",
49
+ "tw-animate-css": "^1.3.5"
50
+ },
51
+ "devDependencies": {
52
+ "@storybook/addon-docs": "^9.0.15",
53
+ "@storybook/addon-onboarding": "^9.0.15",
54
+ "@storybook/react-vite": "^9.0.15",
55
+ "@typescript-eslint/eslint-plugin": "^8.35.1",
56
+ "autoprefixer": "^10.4.13",
57
+ "eslint": "^8.56.0",
58
+ "eslint-plugin-react": "^7.37.5",
59
+ "eslint-plugin-storybook": "^9.0.15",
60
+ "husky": "^8.0.3",
61
+ "postcss": "^8.4.21",
62
+ "storybook": "^9.0.15",
63
+ "typescript": "^5.4.0"
64
+ },
65
+ "peerDependencies": {
66
+ "react": ">=18.0.0",
67
+ "react-dom": ">=18.0.0"
68
+ },
69
+ "eslintConfig": {
70
+ "extends": [
71
+ "plugin:storybook/recommended"
72
+ ]
73
+ }
74
+ }