Files
windmill/chat-sdk/package.json
T

75 lines
1.6 KiB
JSON

{
"name": "windmill-chat",
"description": "Build chat interfaces on Windmill flows deployed in chat mode, from any frontend or raw app",
"version": "1.810.0",
"author": "Ruben Fiszel",
"license": "Apache-2.0",
"homepage": "https://github.com/windmill-labs/windmill/tree/main/chat-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/windmill-labs/windmill.git",
"directory": "chat-sdk"
},
"bugs": {
"url": "https://github.com/windmill-labs/windmill/issues"
},
"keywords": [
"windmill",
"chat",
"ai",
"agent",
"react"
],
"sideEffects": false,
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./react": {
"import": {
"types": "./dist/react.d.ts",
"default": "./dist/react.js"
},
"require": {
"types": "./dist/react.d.ts",
"default": "./dist/react.cjs"
}
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsdown && tsc -p tsconfig.build.json",
"check": "tsc --noEmit",
"test": "bun test"
},
"peerDependencies": {
"react": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/react": "^19.0.0",
"react": "^19.0.0",
"tsdown": "^0.12.9",
"typescript": "^5.4.5"
}
}