package.json
1 { 2 "name": "@lit-karaoke/tableland", 3 "version": "1.0.0", 4 "description": "Tableland management for Lit Karaoke", 5 "type": "module", 6 "scripts": { 7 "deploy": "bun run deploy/unified-deploy.ts", 8 "deploy:table": "bun run deploy/unified-deploy.ts deploy", 9 "deploy:batch": "bun run deploy/unified-deploy.ts batch", 10 "deploy:list": "bun run deploy/unified-deploy.ts list", 11 "deploy:verify": "bun run deploy/unified-deploy.ts verify", 12 "deploy:legacy": "bun run deploy/deploy-table.ts", 13 "add": "bun run operations/add/add-song.ts", 14 "batch": "bun run operations/add/batch-add-songs.ts", 15 "pipeline": "bun run scripts/pipeline.ts", 16 "update": "bun run operations/update/update-encrypted-content.ts", 17 "query": "bun run operations/query/query.ts" 18 }, 19 "dependencies": { 20 "@ethersproject/hardware-wallets": "5.8.0", 21 "@ledgerhq/hw-app-eth": "6.45.11", 22 "@ledgerhq/hw-transport-node-hid": "6.29.8", 23 "@tableland/sdk": "^7.2.1", 24 "dotenv": "^16.4.7", 25 "ethers": "^6.13.4", 26 "ora": "^8.2.0" 27 }, 28 "devDependencies": { 29 "@types/node": "^22.10.5", 30 "ts-node": "^10.9.2", 31 "typescript": "^5.7.2" 32 } 33 }