Files
soroban-abacus-flashcards/client/node/package.json
Thomas Hallock fb1b0470cf feat: add Node.js/TypeScript integration with clean function interface
- Add SorobanGenerator class with python-shell bridge
- No CLI arguments - clean TypeScript function calls
- Support for Express.js and Next.js integration
- Include comprehensive API documentation

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-09 15:45:47 -05:00

21 lines
519 B
JSON

{
"name": "soroban-flashcards-node",
"version": "1.0.0",
"description": "Node.js TypeScript interface for Soroban Flashcard Generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn example-server.ts"
},
"dependencies": {
"python-shell": "^5.0.0",
"express": "^4.18.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/express": "^4.17.0",
"typescript": "^5.0.0",
"ts-node-dev": "^2.0.0"
}
}