create-nextop-app 0.0.5 → 0.0.6

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,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nextop-app",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "NextOP framework starter CLI",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {
@@ -32,7 +32,7 @@ export default function Page() {
32
32
  alt='logo'
33
33
  />
34
34
  <label>
35
- For contrubition <Link href={'https://github.com/FlyingTurkman/nextop-app'} className='underline text-lg font-semibold'>NextOP</Link>
35
+ For contrubition <Link className="font-semibold underline" isExternal href={'https://github.com/FlyingTurkman/nextop-app'}>Github</Link>
36
36
  </label>
37
37
  <button
38
38
  className='p-2 bg-[#1a1a1a] text-white rounded-md cursor-pointer'
@@ -14,4 +14,8 @@ contextBridge.exposeInMainWorld("desktop", {
14
14
  menu: {
15
15
  setMenu: (template: MenuItemConstructorOptions[]) => ipcRenderer.send('set-menu', template)
16
16
  }
17
+ })
18
+
19
+ contextBridge.exposeInMainWorld('nextop', {
20
+ openExternal: (url: string) => ipcRenderer.send('open-external', url)
17
21
  })
@@ -21,7 +21,7 @@
21
21
  "react": "^19.2.3",
22
22
  "react-dom": "^19.2.3",
23
23
  "tailwindcss": "^4.1.18",
24
- "nextop-app": "0.0.2"
24
+ "nextop-app": "0.0.3"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^25.0.3",