@namuna-nur/ui-kit 1.0.8 → 1.1.2

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/package.json CHANGED
@@ -1,164 +1,169 @@
1
- {
2
- "name": "@namuna-nur/ui-kit",
3
- "version": "1.0.8",
4
- "description": "UI Kit for Namuna NUR",
5
- "type": "module",
6
- "main": "lib/index.js",
7
- "module": "lib/index.js",
8
- "types": "lib/index.d.ts",
9
- "engines": {
10
- "node": ">=20.18.0 <21",
11
- "npm": ">=10.8.2 <11"
12
- },
13
- "files": [
14
- "lib"
15
- ],
16
- "exports": {
17
- ".": {
18
- "import": "./lib/index.js",
19
- "types": "./lib/index.d.ts",
20
- "require": "./lib/index.js"
21
- },
22
- "./style.css": "./lib/style.css",
23
- "./atoms": {
24
- "import": "./lib/atoms/index.js",
25
- "types": "./lib/src/atoms/index.d.ts",
26
- "require": "./lib/atoms/index.js"
27
- },
28
- "./molecules": {
29
- "import": "./lib/molecules/index.js",
30
- "types": "./lib/src/molecules/index.d.ts",
31
- "require": "./lib/molecules/index.js"
32
- },
33
- "./hooks": {
34
- "import": "./lib/hooks/index.js",
35
- "types": "./lib/src/hooks/index.d.ts",
36
- "require": "./lib/hooks/index.js"
37
- },
38
- "./tokens": {
39
- "import": "./lib/tokens/index.js",
40
- "types": "./lib/src/tokens/index.d.ts",
41
- "require": "./lib/tokens/index.js"
42
- },
43
- "./utils": {
44
- "import": "./lib/utils/index.js",
45
- "types": "./lib/src/utils/index.d.ts",
46
- "require": "./lib/utils/index.js"
47
- }
48
- },
49
- "repository": {
50
- "type": "git",
51
- "url": "https://git.devsymfony.io/DevSymfony/namuna-ui-kit.git"
52
- },
53
- "keywords": [
54
- "ui",
55
- "storybook"
56
- ],
57
- "author": "Namuna NUR <namunadevelopment@gmail.com>",
58
- "scripts": {
59
- "format": "prettier --check \"**/*.ts\"",
60
- "format:fix": "prettier \"**/*.ts\" --write",
61
- "lint": "eslint .",
62
- "lint:fix": "eslint . --fix",
63
- "prepare": "husky",
64
- "build": "tsc -b && vite build",
65
- "storybook:dev": "storybook dev -p 6006",
66
- "storybook:build": "storybook build --quiet --loglevel=error",
67
- "test": "vitest run --reporter=basic --reporter=hanging-process",
68
- "test:watch": "vitest dev --reporter=verbose",
69
- "test:coverage": "vitest run --coverage --coverage.enabled",
70
- "test:coverage:ui": "vitest --ui",
71
- "release": "standard-version",
72
- "svg:fix": "node scripts/clean-svgs.mjs",
73
- "test:placeholders": "node scripts/add-placeholders.mjs"
74
- },
75
- "license": "ISC",
76
- "dependencies": {
77
- "@radix-ui/react-accordion": "^1.2.2",
78
- "@radix-ui/react-avatar": "^1.1.10",
79
- "@radix-ui/react-dialog": "^1.1.4",
80
- "@radix-ui/react-dropdown-menu": "^2.1.15",
81
- "@radix-ui/react-icons": "^1.3.2",
82
- "@radix-ui/react-popover": "^1.1.4",
83
- "@radix-ui/react-progress": "^1.1.1",
84
- "@radix-ui/react-slider": "^1.2.2",
85
- "@radix-ui/react-switch": "^1.1.2",
86
- "@radix-ui/react-tabs": "^1.1.12",
87
- "@radix-ui/react-toast": "^1.2.5",
88
- "@radix-ui/react-toggle": "^1.1.9",
89
- "@radix-ui/react-tooltip": "^1.1.7",
90
- "@react-input/mask": "^2.0.4",
91
- "@tanstack/react-table": "^8.20.6",
92
- "class-variance-authority": "^0.7.1",
93
- "clsx": "^2.1.1",
94
- "date-fns": "^4.1.0",
95
- "embla-carousel-react": "^8.5.2",
96
- "nuqs": "^2.4.0",
97
- "react-day-picker": "^9.5.0",
98
- "react-hook-form": "^7.54.2",
99
- "tailwind-merge": "^2.6.0",
100
- "tailwindcss-animate": "^1.0.7"
101
- },
102
- "peerDependencies": {
103
- "react": "^19.0.0",
104
- "react-dom": "^19.0.0",
105
- "react-router-dom": "^7.0.0"
106
- },
107
- "sideEffects": [
108
- "**/index.css"
109
- ],
110
- "publishConfig": {
111
- "access": "public"
112
- },
113
- "devDependencies": {
114
- "@commitlint/cli": "^19.6.1",
115
- "@commitlint/config-conventional": "^19.6.0",
116
- "@commitlint/format": "^19.5.0",
117
- "@commitlint/types": "^19.5.0",
118
- "@eslint/js": "^9.17.0",
119
- "@storybook/addon-docs": "^9.0.15",
120
- "@storybook/react-vite": "^9.0.15",
121
- "@svgr/plugin-jsx": "^8.1.0",
122
- "@svgr/plugin-svgo": "^8.1.0",
123
- "@testing-library/jest-dom": "^6.6.3",
124
- "@testing-library/react": "^16.1.0",
125
- "@testing-library/user-event": "^14.5.2",
126
- "@types/eslint__js": "^8.42.3",
127
- "@types/react": "^19.0.4",
128
- "@types/react-dom": "^19.0.2",
129
- "@types/react-input-mask": "^3.0.6",
130
- "@typescript-eslint/parser": "^8.19.1",
131
- "@vitejs/plugin-react": "^4.3.4",
132
- "@vitest/browser": "^2.1.8",
133
- "@vitest/coverage-v8": "^2.1.8",
134
- "@vitest/ui": "^2.1.8",
135
- "autoprefixer": "^10.4.20",
136
- "eslint": "^9.17.0",
137
- "eslint-config-prettier": "^9.1.0",
138
- "eslint-import-resolver-typescript": "^3.7.0",
139
- "eslint-plugin-import": "^2.31.0",
140
- "eslint-plugin-license-header": "^0.6.1",
141
- "eslint-plugin-prettier": "^5.2.1",
142
- "eslint-plugin-react-hooks": "^5.1.0",
143
- "eslint-plugin-react-refresh": "^0.4.16",
144
- "eslint-plugin-storybook": "^9.0.15",
145
- "husky": "^9.1.7",
146
- "jsdom": "^26.0.0",
147
- "postcss": "^8.4.49",
148
- "prettier": "^3.4.2",
149
- "react": "^19.0.0",
150
- "react-dom": "^19.0.0",
151
- "react-router-dom": "^7.0.0",
152
- "storybook": "^9.0.15",
153
- "tailwindcss": "^3.4.17",
154
- "typescript": "^5.7.3",
155
- "typescript-eslint": "^8.19.1",
156
- "vite": "^5.4.11",
157
- "vite-plugin-dts": "^4.5.0",
158
- "vite-plugin-svgr": "^4.3.0",
159
- "vite-tsconfig-paths": "^5.1.4",
160
- "vitest": "^2.1.8",
161
- "vitest-browser-react": "^0.0.4",
162
- "standard-version": "^9.5.0"
163
- }
164
- }
1
+ {
2
+ "name": "@namuna-nur/ui-kit",
3
+ "version": "1.1.2",
4
+ "description": "UI Kit for Namuna NUR",
5
+ "type": "module",
6
+ "main": "lib/index.js",
7
+ "module": "lib/index.js",
8
+ "types": "lib/index.d.ts",
9
+ "engines": {
10
+ "node": ">=20.18.0 <21",
11
+ "npm": ">=10.8.2 <11"
12
+ },
13
+ "files": [
14
+ "lib"
15
+ ],
16
+ "exports": {
17
+ ".": {
18
+ "import": "./lib/index.js",
19
+ "types": "./lib/index.d.ts",
20
+ "require": "./lib/index.js"
21
+ },
22
+ "./style.css": "./lib/style.css",
23
+ "./atoms": {
24
+ "import": "./lib/atoms/index.js",
25
+ "types": "./lib/src/atoms/index.d.ts",
26
+ "require": "./lib/atoms/index.js"
27
+ },
28
+ "./molecules": {
29
+ "import": "./lib/molecules/index.js",
30
+ "types": "./lib/src/molecules/index.d.ts",
31
+ "require": "./lib/molecules/index.js"
32
+ },
33
+ "./hooks": {
34
+ "import": "./lib/hooks/index.js",
35
+ "types": "./lib/src/hooks/index.d.ts",
36
+ "require": "./lib/hooks/index.js"
37
+ },
38
+ "./tokens": {
39
+ "import": "./lib/tokens/index.js",
40
+ "types": "./lib/src/tokens/index.d.ts",
41
+ "require": "./lib/tokens/index.js"
42
+ },
43
+ "./utils": {
44
+ "import": "./lib/utils/index.js",
45
+ "types": "./lib/src/utils/index.d.ts",
46
+ "require": "./lib/utils/index.js"
47
+ }
48
+ },
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://git.devsymfony.io/Namuna/ui-kit-package.git"
52
+ },
53
+ "bugs": {
54
+ "url": "https://git.devsymfony.io/Namuna/ui-kit-package/-/issues"
55
+ },
56
+ "homepage": "https://git.devsymfony.io/Namuna/ui-kit-package#readme",
57
+ "keywords": [
58
+ "ui",
59
+ "storybook"
60
+ ],
61
+ "author": "Namuna NUR <namunadevelopment@gmail.com>",
62
+ "scripts": {
63
+ "format": "prettier --check \"**/*.ts\"",
64
+ "format:fix": "prettier \"**/*.ts\" --write",
65
+ "lint": "eslint .",
66
+ "lint:fix": "eslint . --fix",
67
+ "prepare": "husky",
68
+ "build": "tsc -b && vite build",
69
+ "storybook:dev": "storybook dev -p 6006",
70
+ "storybook:build": "storybook build --quiet --loglevel=error",
71
+ "test": "vitest run --reporter=basic --reporter=hanging-process",
72
+ "test:watch": "vitest dev --reporter=verbose",
73
+ "test:coverage": "vitest run --coverage --coverage.enabled",
74
+ "test:coverage:ui": "vitest --ui",
75
+ "release": "standard-version",
76
+ "svg:fix": "node scripts/clean-svgs.mjs",
77
+ "test:placeholders": "node scripts/add-placeholders.mjs"
78
+ },
79
+ "license": "ISC",
80
+ "dependencies": {
81
+ "@radix-ui/react-accordion": "^1.2.2",
82
+ "@radix-ui/react-avatar": "^1.1.10",
83
+ "@radix-ui/react-dialog": "^1.1.4",
84
+ "@radix-ui/react-dropdown-menu": "^2.1.15",
85
+ "@radix-ui/react-icons": "^1.3.2",
86
+ "@radix-ui/react-popover": "^1.1.4",
87
+ "@radix-ui/react-progress": "^1.1.1",
88
+ "@radix-ui/react-slider": "^1.2.2",
89
+ "@radix-ui/react-switch": "^1.1.2",
90
+ "@radix-ui/react-tabs": "^1.1.12",
91
+ "@radix-ui/react-toast": "^1.2.5",
92
+ "@radix-ui/react-toggle": "^1.1.9",
93
+ "@radix-ui/react-tooltip": "^1.1.7",
94
+ "@react-input/mask": "^2.0.4",
95
+ "@tanstack/react-table": "^8.20.6",
96
+ "class-variance-authority": "^0.7.1",
97
+ "clsx": "^2.1.1",
98
+ "date-fns": "^4.1.0",
99
+ "embla-carousel-react": "^8.5.2",
100
+ "nuqs": "^2.4.0",
101
+ "react-day-picker": "^9.5.0",
102
+ "react-hook-form": "^7.54.2",
103
+ "tailwind-merge": "^2.6.0",
104
+ "tailwindcss-animate": "^1.0.7"
105
+ },
106
+ "peerDependencies": {
107
+ "react": "^19.0.0",
108
+ "react-dom": "^19.0.0",
109
+ "react-router-dom": "^7.0.0"
110
+ },
111
+ "sideEffects": [
112
+ "**/index.css",
113
+ "./style.css"
114
+ ],
115
+ "publishConfig": {
116
+ "access": "public"
117
+ },
118
+ "devDependencies": {
119
+ "@commitlint/cli": "^19.6.1",
120
+ "@commitlint/config-conventional": "^19.6.0",
121
+ "@commitlint/format": "^19.5.0",
122
+ "@commitlint/types": "^19.5.0",
123
+ "@eslint/js": "^9.17.0",
124
+ "@storybook/addon-docs": "^9.0.15",
125
+ "@storybook/react-vite": "^9.0.15",
126
+ "@svgr/plugin-jsx": "^8.1.0",
127
+ "@svgr/plugin-svgo": "^8.1.0",
128
+ "@testing-library/jest-dom": "^6.6.3",
129
+ "@testing-library/react": "^16.1.0",
130
+ "@testing-library/user-event": "^14.5.2",
131
+ "@types/eslint__js": "^8.42.3",
132
+ "@types/react": "^19.0.4",
133
+ "@types/react-dom": "^19.0.2",
134
+ "@types/react-input-mask": "^3.0.6",
135
+ "@typescript-eslint/parser": "^8.19.1",
136
+ "@vitejs/plugin-react": "^4.3.4",
137
+ "@vitest/browser": "^2.1.8",
138
+ "@vitest/coverage-v8": "^2.1.8",
139
+ "@vitest/ui": "^2.1.8",
140
+ "autoprefixer": "^10.4.20",
141
+ "eslint": "^9.17.0",
142
+ "eslint-config-prettier": "^9.1.0",
143
+ "eslint-import-resolver-typescript": "^3.7.0",
144
+ "eslint-plugin-import": "^2.31.0",
145
+ "eslint-plugin-license-header": "^0.6.1",
146
+ "eslint-plugin-prettier": "^5.2.1",
147
+ "eslint-plugin-react-hooks": "^5.1.0",
148
+ "eslint-plugin-react-refresh": "^0.4.16",
149
+ "eslint-plugin-storybook": "^9.0.15",
150
+ "husky": "^9.1.7",
151
+ "jsdom": "^26.0.0",
152
+ "postcss": "^8.4.49",
153
+ "prettier": "^3.4.2",
154
+ "react": "^19.0.0",
155
+ "react-dom": "^19.0.0",
156
+ "react-router-dom": "^7.0.0",
157
+ "storybook": "^9.0.15",
158
+ "tailwindcss": "^3.4.17",
159
+ "typescript": "^5.7.3",
160
+ "typescript-eslint": "^8.19.1",
161
+ "vite": "^5.4.11",
162
+ "vite-plugin-dts": "^4.5.0",
163
+ "vite-plugin-svgr": "^4.3.0",
164
+ "vite-tsconfig-paths": "^5.1.4",
165
+ "vitest": "^2.1.8",
166
+ "vitest-browser-react": "^0.0.4",
167
+ "standard-version": "^9.5.0"
168
+ }
169
+ }