/ package.json
package.json
1 { 2 "name": "@anthropic-internal/cg-bot-sdk", 3 "version": "0.1.0", 4 "description": "SDK for building bots on Common Ground", 5 "main": "dist/index.js", 6 "types": "dist/index.d.ts", 7 "type": "module", 8 "engines": { 9 "node": ">=18.0.0" 10 }, 11 "scripts": { 12 "build": "tsc", 13 "dev": "tsc --watch", 14 "test": "node --test", 15 "prepublishOnly": "npm run build" 16 }, 17 "keywords": [ 18 "commonground", 19 "bot", 20 "sdk", 21 "chat" 22 ], 23 "author": "", 24 "license": "MIT", 25 "devDependencies": { 26 "@types/node": "^20.10.0", 27 "typescript": "^5.3.0" 28 }, 29 "files": [ 30 "dist", 31 "README.md" 32 ], 33 "exports": { 34 ".": { 35 "types": "./dist/index.d.ts", 36 "import": "./dist/index.js" 37 } 38 } 39 } 40