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-remix/package.template.json

32 lines · 691 B · JSON
{
  "name": "__PACKAGE_NAME__",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "exports": {
    ".": "./src/index.ts",
    "./record-version": "./src/record-version.ts"
  },
  "devDependencies": {
    "remix": "3.0.0-rc.2"
  },
  "kody": {
    "id": "__PACKAGE_ID__",
    "description": "__KODY_DESCRIPTION__",
    "searchText": "package app pwa remix starter kit install about update notes",
    "tags": [
      "app",
      "pwa",
      "remix"
    ],
    "category": "apps",
    "app": {
      "entry": "./app/router.ts",
      "client": "./app/assets/entry.ts",
      "assets": "./public"
    },
    "dependencies": {
      "@kentcdodds/package-app-kit": "*"
    }
  }
}