package.json
1 { 2 "name": "@ai-sdk-tools/artifacts", 3 "private": false, 4 "version": "1.2.0", 5 "description": "Advanced streaming interfaces for AI applications", 6 "main": "./dist/index.js", 7 "module": "./dist/index.mjs", 8 "types": "./dist/index.d.ts", 9 "exports": { 10 ".": { 11 "types": "./dist/index.d.ts", 12 "import": "./dist/index.mjs", 13 "require": "./dist/index.js" 14 }, 15 "./client": { 16 "types": "./dist/client.d.ts", 17 "import": "./dist/client.mjs", 18 "require": "./dist/client.js" 19 } 20 }, 21 "files": [ 22 "dist", 23 "README.md", 24 "LICENSE" 25 ], 26 "scripts": { 27 "build": "tsup", 28 "dev": "tsup --watch", 29 "clean": "rm -rf dist", 30 "prepublishOnly": "bun run build", 31 "type-check": "tsc --noEmit" 32 }, 33 "keywords": [ 34 "ai", 35 "artifacts", 36 "streaming", 37 "react", 38 "ai-sdk", 39 "typescript" 40 ], 41 "author": "Pontus Abrahamsson", 42 "license": "MIT", 43 "repository": { 44 "type": "git", 45 "url": "https://github.com/midday-ai/ai-sdk-tools.git" 46 }, 47 "bugs": { 48 "url": "https://github.com/midday-ai/ai-sdk-tools/issues" 49 }, 50 "homepage": "https://github.com/midday-ai/ai-sdk-tools#readme", 51 "publishConfig": { 52 "access": "public" 53 }, 54 "dependencies": { 55 "zod": "^4.1.12" 56 }, 57 "devDependencies": { 58 "@types/node": "^24.10.1", 59 "@ai-sdk/react": "beta", 60 "@types/react": "^19.2.6", 61 "typescript": "^5.9.3", 62 "tsup": "^8.5.1", 63 "@ai-sdk-tools/store": "workspace:*" 64 }, 65 "peerDependencies": { 66 "ai": "^5.0.82", 67 "react": "^18.0.0 || ^19.0.0" 68 } 69 }