This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
token-gated-economy/scripts/package.json
Alexander Whitestone 247e796af3
Some checks failed
CI / Typecheck & Lint (pull_request) Failing after 0s
feat: add Timmy Nostr keygen script + operator setup docs
- Add scripts/generate-timmy-nsec.sh wrapper and TypeScript keygen script
  that outputs nsec/npub and a ready-to-paste export line
- Add OPERATOR.md with persistent identity setup instructions
- Document TIMMY_NOSTR_NSEC in replit.md secrets table
- Startup log already uses INFO (persisted) vs WARN (ephemeral)

Fixes #48

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-22 21:50:11 -04:00

21 lines
494 B
JSON

{
"name": "@workspace/scripts",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"hello": "tsx ./src/hello.ts",
"timmy-watch": "tsx ./src/timmy-watch.ts",
"timmy-report": "tsx ./src/timmy-report.ts",
"generate-timmy-nsec": "tsx ./src/generate-timmy-nsec.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"nostr-tools": "^2.23.3"
},
"devDependencies": {
"@types/node": "catalog:",
"tsx": "catalog:"
}
}