@ssafy-mhk/e-ver 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/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # E-ver 프로젝트 SDK
2
+
3
+ ## 프로젝트 테스트
4
+
5
+ ## 프로젝트 빌드 및 로컬 배포
6
+
7
+ ```bash
8
+ pnpm build
9
+ pnpm link --global
10
+ ```
package/dist/.gitkeep ADDED
File without changes
@@ -0,0 +1 @@
1
+ export {}
@@ -0,0 +1,4 @@
1
+ //#region src/hooks/useEver.tsx
2
+ var e = () => ({});
3
+ //#endregion
4
+ export { e as useEver };
@@ -0,0 +1 @@
1
+ (function(e,t){typeof exports==`object`&&typeof module<`u`?t(exports):typeof define==`function`&&define.amd?define([`exports`],t):(e=typeof globalThis<`u`?globalThis:e||self,t(e[`e-ver`]={}))})(this,function(e){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`}),e.useEver=()=>({})});
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@ssafy-mhk/e-ver",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+
6
+ "main": "./dist/index.umd.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.umd.js",
13
+ "types": "./dist/index.d.ts"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+
20
+ "scripts": {
21
+ "dev": "vite",
22
+ "build": "tsc -b && vite build",
23
+ "lint": "eslint .",
24
+ "preview": "vite preview"
25
+ },
26
+ "dependencies": {
27
+ "react": "^19.2.4",
28
+ "react-dom": "^19.2.4"
29
+ },
30
+ "devDependencies": {
31
+ "@eslint/js": "^9.39.4",
32
+ "@testing-library/dom": "^10.4.1",
33
+ "@testing-library/react": "^16.3.2",
34
+ "@types/node": "^24.12.0",
35
+ "@types/react": "^19.2.14",
36
+ "@types/react-dom": "^19.2.3",
37
+ "@vitejs/plugin-react": "^6.0.0",
38
+ "eslint": "^9.39.4",
39
+ "eslint-plugin-react-hooks": "^7.0.1",
40
+ "eslint-plugin-react-refresh": "^0.5.2",
41
+ "globals": "^17.4.0",
42
+ "jsdom": "^29.0.0",
43
+ "typescript": "~5.9.3",
44
+ "typescript-eslint": "^8.56.1",
45
+ "vite": "^8.0.0",
46
+ "vite-plugin-dts": "^4.5.4",
47
+ "vitest": "^4.1.0"
48
+ },
49
+ "peerDependencies": {
50
+ "react": ">=16.8.0"
51
+ }
52
+ }