@ramong26/xp-components 1.0.4 → 1.0.5

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/dist/index.css +1 -1
  2. package/package.json +68 -92
package/dist/index.css CHANGED
@@ -37,7 +37,7 @@
37
37
  color: #888;
38
38
  }
39
39
 
40
- /* ../../AppData/Local/Temp/tmp-14388-W79flogl0seX/xp-components/src/components/Button/Button.css */
40
+ /* ../../AppData/Local/Temp/tmp-24696-liJefVRyhxF5/xp-components/src/components/Button/Button.css */
41
41
  .btn {
42
42
  background: #fffbea;
43
43
  background-size: cover;
package/package.json CHANGED
@@ -1,92 +1,68 @@
1
- {
2
- "name": "@ramong26/xp-components",
3
- "private": false,
4
- "version": "1.0.4",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "module": "dist/index.mjs",
8
- "types": "dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "import": "./dist/index.mjs",
12
- "require": "./dist/index.js"
13
- },
14
- "./styles": "./dist/index.css"
15
- },
16
- "files": [
17
- "dist",
18
- "README.md"
19
- ],
20
- "keywords": [
21
- "react",
22
- "components",
23
- "ui",
24
- "typescript"
25
- ],
26
- "repository": {
27
- "type": "git",
28
- "url": "https://github.com/ramong26/xp-components.git"
29
- },
30
- "homepage": "https://github.com/ramong26/xp-components",
31
- "bugs": {
32
- "url": "https://github.com/ramong26/xp-components/issues"
33
- },
34
- "author": "ramong23",
35
- "license": "MIT",
36
- "scripts": {
37
- "dev": "vite",
38
- "build:lib": "tsup src/index.ts --dts --format esm,cjs --out-dir dist --clean",
39
- "build": "pnpm build:lib ",
40
- "storybook": "storybook dev -p 6006",
41
- "build-storybook": "storybook build",
42
- "test": "vitest",
43
- "pack": "pnpm build:lib && npm pack",
44
- "lint": "eslint . --ext .ts,.tsx",
45
- "typecheck": "tsc --noEmit"
46
- },
47
- "peerDependencies": {
48
- "react": ">=18 <20",
49
- "react-dom": ">=18 <20"
50
- },
51
- "peerDependenciesMeta": {
52
- "react-dom": {
53
- "optional": false
54
- }
55
- },
56
- "devDependencies": {
57
- "@chromatic-com/storybook": "4.1.0",
58
- "@eslint/js": "^9.33.0",
59
- "@storybook/addon-a11y": "9.1.2",
60
- "@storybook/addon-docs": "9.1.2",
61
- "@storybook/addon-vitest": "9.1.2",
62
- "@storybook/react-vite": "9.1.2",
63
- "@testing-library/jest-dom": "^6.7.0",
64
- "@testing-library/react": "^16.3.0",
65
- "@testing-library/user-event": "^14.6.1",
66
- "@types/react": ">=18 <20",
67
- "@types/react-dom": ">=18 <20",
68
- "@typescript-eslint/eslint-plugin": "^8.39.1",
69
- "@typescript-eslint/parser": "^8.39.1",
70
- "@vitejs/plugin-react": "^5.0.0",
71
- "@vitest/browser": "^3.2.4",
72
- "@vitest/coverage-v8": "^3.2.4",
73
- "esbuild-plugin-sass": "^1.0.1",
74
- "eslint": "^9.33.0",
75
- "eslint-config-prettier": "^10.1.8",
76
- "eslint-plugin-react": "^7.37.5",
77
- "eslint-plugin-react-hooks": "^5.2.0",
78
- "eslint-plugin-react-refresh": "^0.4.20",
79
- "eslint-plugin-storybook": "9.1.2",
80
- "globals": "^16.3.0",
81
- "jsdom": "^26.1.0",
82
- "playwright": "^1.54.2",
83
- "prettier": "^3.6.2",
84
- "sass": "^1.90.0",
85
- "storybook": "9.1.2",
86
- "tsup": "^8.5.0",
87
- "typescript": "~5.8.3",
88
- "typescript-eslint": "^8.39.1",
89
- "vite": "^7.1.2",
90
- "vitest": "^3.2.4"
91
- }
92
- }
1
+ {
2
+ "name": "@ramong26/xp-components",
3
+ "private": false,
4
+ "version": "1.0.5",
5
+ "type": "module",
6
+ "main": "dist/index.cjs.js",
7
+ "module": "dist/index.mjs",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.cjs.js"
13
+ },
14
+ "./styles": "./dist/index.css"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md"
19
+ ],
20
+ "keywords": [
21
+ "react",
22
+ "components",
23
+ "ui",
24
+ "typescript"
25
+ ],
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/ramong26/xp-components.git"
29
+ },
30
+ "homepage": "https://github.com/ramong26/xp-components",
31
+ "bugs": {
32
+ "url": "https://github.com/ramong26/xp-components/issues"
33
+ },
34
+ "author": "ramong23",
35
+ "license": "MIT",
36
+ "scripts": {
37
+ "dev": "vite",
38
+ "build:lib": "tsup src/index.ts --dts --format cjs,esm --out-dir dist --clean",
39
+ "build": "pnpm build:lib",
40
+ "storybook": "storybook dev -p 6006",
41
+ "build-storybook": "storybook build",
42
+ "test": "vitest",
43
+ "pack": "pnpm build:lib && npm pack",
44
+ "lint": "eslint . --ext .ts,.tsx",
45
+ "typecheck": "tsc --noEmit"
46
+ },
47
+ "peerDependencies": {
48
+ "react": ">=18 <20",
49
+ "react-dom": ">=18 <20"
50
+ },
51
+ "devDependencies": {
52
+ "@storybook/react-vite": "^9.1.8",
53
+ "@testing-library/jest-dom": "^6.8.0",
54
+ "@types/react": "^18.3.24",
55
+ "@types/react-dom": "^18.3.7",
56
+ "esbuild-plugin-sass": "^1.0.1",
57
+ "sass": "^1.90.0",
58
+ "storybook": "9.1.2",
59
+ "tsup": "^8.5.0",
60
+ "typescript": "~5.8.3",
61
+ "vite": "^7.1.2",
62
+ "vitest": "^3.2.4"
63
+ },
64
+ "dependencies": {
65
+ "@testing-library/react": "^16.3.0",
66
+ "@testing-library/user-event": "^14.6.1"
67
+ }
68
+ }