@byuckchon-frontend/core 1.0.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/dist/index.d.ts +2 -0
- package/dist/index.mjs +6 -0
- package/dist/index.umd.js +1 -0
- package/dist/src/ErrorBoundary/index.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/vite.config.d.ts +2 -0
- package/package.json +57 -0
package/dist/index.d.ts
ADDED
package/dist/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(e,n){typeof exports=="object"&&typeof module<"u"?n(exports):typeof define=="function"&&define.amd?define(["exports"],n):(e=typeof globalThis<"u"?globalThis:e||self,n(e.index={}))})(this,(function(e){"use strict";function n(){return"ErrorBoundary"}e.ErrorBoundary=n,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function ErrorBoundary(): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ErrorBoundary } from './ErrorBoundary';
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@byuckchon-frontend/core",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.umd.js",
|
|
7
|
+
"module": "dist/index.mjs",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.mjs",
|
|
16
|
+
"require": "./dist/index.umd.js",
|
|
17
|
+
"default": "./dist/index.mjs"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"react": ">=17.0.0",
|
|
22
|
+
"react-dom": ">=17.0.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"vite": "^7.1.2",
|
|
26
|
+
"@vitejs/plugin-react": "^5.0.0",
|
|
27
|
+
"vite-plugin-dts": "^4.5.4",
|
|
28
|
+
"vite-plugin-libcss": "^1.1.2",
|
|
29
|
+
"vite-css-modules": "^1.10.0",
|
|
30
|
+
"typescript": "~5.8.3"
|
|
31
|
+
},
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/RevolutionaryWarrior/byuckchon-frontend-packages.git"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"react",
|
|
38
|
+
"core",
|
|
39
|
+
"byuckchon",
|
|
40
|
+
"frontend"
|
|
41
|
+
],
|
|
42
|
+
"author": "Byuckchon Frontend Team",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/RevolutionaryWarrior/byuckchon-frontend-packages/issues"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/RevolutionaryWarrior/byuckchon-frontend-packages#readme",
|
|
48
|
+
"description": "",
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "vite build",
|
|
54
|
+
"lint": "eslint src --ext ts,tsx",
|
|
55
|
+
"build:watch": "vite build --watch"
|
|
56
|
+
}
|
|
57
|
+
}
|