Skip to content

Kody is live

Watch the launch video — what Kody is, and why it exists.

← Public packages

@kentcdodds/package-app-kit

Design tokens, PWA install/update, About/version, cache helpers, and optional realtime notes sync for Kody package apps.

starter-fetch/package.template.json

34 lines · 742 B · JSON
{
  "name": "__PACKAGE_NAME__",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "exports": {
    ".": "./src/index.ts",
    "./record-version": "./src/record-version.ts"
  },
  "dependencies": {
    "@remix-run/ui": "0.9.0"
  },
  "kody": {
    "id": "__PACKAGE_ID__",
    "description": "__KODY_DESCRIPTION__",
    "searchText": "package app pwa starter kit install about update client assets",
    "tags": [
      "app",
      "pwa"
    ],
    "category": "apps",
    "app": {
      "entry": "./src/app.ts",
      "client": {
        "entry": "./src/client/index.ts",
        "externals": ["@remix-run/ui"]
      },
      "assets": "./public"
    },
    "dependencies": {
      "@kentcdodds/package-app-kit": "*"
    }
  }
}