Program Kit is a production-ready cross-platform starter published from repository root. It is built around React Native + Expo and is designed to be quickly tested, scaled, and deployed across popular platforms.
- Expo + React Native app foundation
- Telegram bot support (webhook + local bot scripts) with AI functionality
- Telegram Mini App-ready client structure
- Android and iOS clients
- Windows desktop packaging (
.exe) with Electron Builder - CI-oriented release workflow and deployment helpers
- OpenAI functionality and Swap.Coffee for blockchain data retrievement
npx @www.hyperlinks.space/program-kit ./new-programnpx @hyperlinksspace/program-kit ./new-programIf you install from GitHub Packages, configure .npmrc with the @hyperlinksspace
registry and token.
Recommended, not required: copy npmrc.example to .npmrc so installs match this repo (legacy-peer-deps; npm does not ship a real .npmrc in the tarball for security). Equivalent: skip the copy and run npm install --legacy-peer-deps (or plain npm install if it completes without peer errors).
npm i
npm run startnpm run start runs vercel dev alongside Expo and the bot. The Vercel CLI must be logged in; otherwise you may see errors such as “The specified token is not valid” or prompts that fail in non-interactive runs.
- Run
vercel loginonce in the project directory (usevercel linkif the CLI asks to connect the folder to a project). - If the token is invalid or expired, run
vercel loginagain. - To work without local Vercel, use
npm run start:expo(Expo only) or runnpm run bot:local/npm run dev:vercelseparately as documented inREADME.md.
Then open the project README.md (or fullREADME.md if your scaffold renames it) for details (env vars, bot setup, build and release commands).
latestfor stable milestone snapshotsnextfor rolling preview snapshots
- Published from the repository root; the pack includes everything except patterns in
.npmignore(nofileswhitelist inpackage.json). .npmrccannot be published on npm;npmrc.exampleis included so you can copy it locally.
Use the same setup you would after cloning this repo:
- Node — Prefer the version in
.nvmrc(aligned withpackage.jsonengines). - npm install — Copy
npmrc.exampleto.npmrc, then runnpm install(samelegacy-peer-depsbehavior as a local checkout with a root.npmrc). - Env — Copy
.env.exampleto.envand fill variables (seeREADME.mdin the repo). - Vercel CLI — For the full stack (
npm run start), runvercel login(andvercel linkif needed). See the Vercel CLI andnpm run startsubsection above andREADME.md→ Local deploy for the “invalid token” case.
The tarball does not ship package-lock.json (by .npmignore); the first install generates a lockfile for your machine, like cloning without a committed lock.