@refactico/pages 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.
- package/LICENSE +21 -0
- package/README.md +99 -0
- package/dist/index.cjs +2249 -0
- package/dist/index.d.ts +376 -0
- package/dist/index.js +2210 -0
- package/dist/style.css +1908 -0
- package/package.json +105 -0
package/package.json
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@refactico/pages",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "A component library for building pages with React.",
|
|
6
|
+
"author": "refactico",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/refactico/pages.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/refactico/pages/issues"
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"registry": "https://registry.npmjs.org/",
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/refactico/pages#readme",
|
|
20
|
+
"keywords": [
|
|
21
|
+
"react",
|
|
22
|
+
"components",
|
|
23
|
+
"editor",
|
|
24
|
+
"pages",
|
|
25
|
+
"blocks",
|
|
26
|
+
"content-editor",
|
|
27
|
+
"rich-text",
|
|
28
|
+
"tailwindcss"
|
|
29
|
+
],
|
|
30
|
+
"type": "module",
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"sideEffects": [
|
|
35
|
+
"**/*.css"
|
|
36
|
+
],
|
|
37
|
+
"main": "./dist/index.cjs",
|
|
38
|
+
"module": "./dist/index.js",
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
40
|
+
"exports": {
|
|
41
|
+
".": {
|
|
42
|
+
"import": {
|
|
43
|
+
"types": "./dist/index.d.ts",
|
|
44
|
+
"default": "./dist/index.js"
|
|
45
|
+
},
|
|
46
|
+
"require": {
|
|
47
|
+
"types": "./dist/index.d.ts",
|
|
48
|
+
"default": "./dist/index.cjs"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"./css": "./dist/style.css"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@storybook/addon-actions": "^8.6.15",
|
|
55
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
56
|
+
"@storybook/blocks": "^8.6.14",
|
|
57
|
+
"@storybook/builder-vite": "^8.6.15",
|
|
58
|
+
"@storybook/react": "^8.6.15",
|
|
59
|
+
"@storybook/react-vite": "^8.6.15",
|
|
60
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
61
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
62
|
+
"@testing-library/react": "^16.3.1",
|
|
63
|
+
"@testing-library/user-event": "^14.6.1",
|
|
64
|
+
"@types/node": "^22.19.3",
|
|
65
|
+
"@types/react": "^19.2.7",
|
|
66
|
+
"@types/react-dom": "^19.2.3",
|
|
67
|
+
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
68
|
+
"@typescript-eslint/parser": "^8.50.1",
|
|
69
|
+
"@vitejs/plugin-react-swc": "^3.11.0",
|
|
70
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
71
|
+
"clsx": "^2.1.1",
|
|
72
|
+
"eslint": "^8.57.1",
|
|
73
|
+
"eslint-config-prettier": "^9.1.2",
|
|
74
|
+
"eslint-plugin-jest-dom": "^5.5.0",
|
|
75
|
+
"eslint-plugin-react": "^7.37.5",
|
|
76
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
77
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
78
|
+
"eslint-plugin-storybook": "^0.11.6",
|
|
79
|
+
"husky": "^9.1.7",
|
|
80
|
+
"jsdom": "^26.1.0",
|
|
81
|
+
"prettier": "^3.7.4",
|
|
82
|
+
"react": "^19.2.3",
|
|
83
|
+
"react-dom": "^19.2.3",
|
|
84
|
+
"storybook": "^8.6.15",
|
|
85
|
+
"tailwind-merge": "^3.4.0",
|
|
86
|
+
"tailwindcss": "^4.1.18",
|
|
87
|
+
"typescript": "^5.9.3",
|
|
88
|
+
"vite": "^6.4.1",
|
|
89
|
+
"vite-plugin-dts": "^4.5.4",
|
|
90
|
+
"vitest": "^3.2.4"
|
|
91
|
+
},
|
|
92
|
+
"peerDependencies": {
|
|
93
|
+
"react": "^19.0.0",
|
|
94
|
+
"react-dom": "^19.0.0"
|
|
95
|
+
},
|
|
96
|
+
"scripts": {
|
|
97
|
+
"dev": "storybook dev -p 6006",
|
|
98
|
+
"test": "vitest run",
|
|
99
|
+
"test:watch": "vitest",
|
|
100
|
+
"build": "storybook build",
|
|
101
|
+
"build:lib": "tsc && vite build",
|
|
102
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
103
|
+
"format": "prettier . --write --ignore-unknown"
|
|
104
|
+
}
|
|
105
|
+
}
|