message-verify 0.0.2 → 0.0.4

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,7 +1,8 @@
1
1
  {
2
2
  "name": "message-verify",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "type": "module",
5
+ "main": "src/index.ts",
5
6
  "dependencies": {
6
7
  "react": "^19.0.0",
7
8
  "react-dom": "^19.0.0"
package/src/App.tsx CHANGED
@@ -1,6 +1,4 @@
1
1
  import { useState } from 'react'
2
- import reactLogo from './assets/react.svg'
3
- import viteLogo from '/vite.svg'
4
2
  import './App.css'
5
3
 
6
4
  function App() {
@@ -8,14 +6,6 @@ function App() {
8
6
 
9
7
  return (
10
8
  <>
11
- <div>
12
- <a href="https://vite.dev" target="_blank">
13
- <img src={viteLogo} className="logo" alt="Vite logo" />
14
- </a>
15
- <a href="https://react.dev" target="_blank">
16
- <img src={reactLogo} className="logo react" alt="React logo" />
17
- </a>
18
- </div>
19
9
  <h1>Vite + React</h1>
20
10
  <div className="card">
21
11
  <button onClick={() => setCount((count) => count + 1)}>
package/src/index.ts ADDED
@@ -0,0 +1,3 @@
1
+ import App from './App'
2
+
3
+ export default { App };
package/src/main.tsx CHANGED
@@ -7,6 +7,4 @@ createRoot(document.getElementById('root')!).render(
7
7
  <StrictMode>
8
8
  <App />
9
9
  </StrictMode>,
10
- )
11
-
12
- export { default as App } from './App';
10
+ )