Huakun Shen ad30a8c3bb
fix: duplicate api calls from comlink (#27)
* refactor: replace comlink with kkrpc

* fix: import path in api pkg and btn styling in ui iframe page

* fix: fixed fetch API from kkRPC migrate

* refactor: replace comlink-stdio with kkrpc

* update deno lock

* bump @kksh/api

* update API version

* publish api pkg again to fix kkrpc version

* update pnpm lock

* dep: fix dependency problems

* dep: update deno.lock

* chore: remove 2 submodules

they were added only for integration development

* update pnpm lock

* fix: test template path

* format: with prettier

* downgrade next version

* ci: try to fix next build on windows

* try to fix CI

* Revert "try to fix CI"

This reverts commit b9c63c392f50f1d2d3ceec406e49b1af2348c740.

* upgrade tauri-api-adapter

* try to fix next

* remove templates from pnpm workspace

* update CI test

* publish @kksh/api with upgraded tauri-api-adapter to fix nextjs template
2024-11-19 05:57:31 -05:00

63 lines
1.3 KiB
JSON

{
"$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-next",
"version": "0.1.1",
"private": true,
"kunkun": {
"name": "TODO: Change Display Name",
"shortDescription": "A Custom UI template for next",
"longDescription": "A Custom UI template for next",
"identifier": "template-ext-next",
"icon": {
"type": "iconify",
"value": "logos:nextjs-icon"
},
"demoImages": [],
"permissions": [],
"customUiCmds": [
{
"main": "/",
"dist": "out",
"devMain": "http://localhost:5173/",
"name": "Next Template Home Page",
"cmds": []
},
{
"main": "/about.html",
"dist": "out",
"devMain": "http://localhost:5173/about",
"name": "Next Template About Page",
"cmds": []
}
],
"templateUiCmds": []
},
"scripts": {
"dev": "next dev -p 5173",
"build": "next build",
"start": "next start -p 5173",
"lint": "next lint"
},
"dependencies": {
"@kksh/api": "workspace:*",
"@kksh/react": "0.1.1",
"@radix-ui/react-icons": "^1.3.2",
"next": "14.2.18",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"files": [
"out"
]
}