Huakun Shen 402208e95a
Feature: license check (#67)
* feat: add required license field to manifest

* chore: add license MIT to all templates

* feat: add license check to jsr and npm validation

* fix: supabase export

split every item into its own subexport for better debugability

* fix: supabase imports

* feat: hide app when escape is pressed

* fix: update package version in api test from 0.0.6 to 0.0.20

* fix: update test for kunkun extension with new version and commit details

* fix: update kunkun extension test to use version 0.0.4

* fix: update kunkun extension test to reflect new version 0.0.20 and updated commit details

* feat: display downloads in extension details

* feat: add downloads display to store
2025-01-18 22:55:43 -05:00

63 lines
1.3 KiB
JSON

{
"$schema": "./node_modules/@kksh/api/dist/schema.json",
"name": "template-ext-next",
"version": "0.1.3",
"license": "MIT",
"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",
"react": "18.3.1",
"react-dom": "18.3.1",
"next": "14.2.18"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "15.0.3"
},
"files": [
"out"
]
}