An experimental TypeSpec syntax for Lexicon
56
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: properly configure example package

- Update example package.json with correct name and scripts
- Install dependencies correctly

All tests passing, CLI working

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+11 -5
+11 -5
packages/example/package.json
··· 1 1 { 2 - "name": "typelex-example", 3 - "version": "1.0.0", 2 + "name": "@typlex/example", 3 + "version": "0.1.0", 4 4 "private": true, 5 + "type": "module", 5 6 "scripts": { 6 - "build": "tsp compile .", 7 - "clean": "rm -rf tsp-output lexicons" 7 + "typlex": "typlex main.tsp", 8 + "build": "npm run typlex" 9 + }, 10 + "dependencies": { 11 + "@typespec/compiler": "^0.64.0", 12 + "@typlex/emitter": "*", 13 + "@typlex/cli": "*" 8 14 }, 9 15 "devDependencies": { 10 - "@typespec/compiler": "^0.64.0" 16 + "typescript": "^5.0.0" 11 17 } 12 18 }