rdesign/frontend/node_modules/@copilotkit/react-ui/package.json

84 lines
2.2 KiB
JSON

{
"name": "@copilotkit/react-ui",
"private": false,
"homepage": "https://github.com/CopilotKit/CopilotKit",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"version": "1.54.0",
"sideEffects": [
"**/*.css"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json",
"./styles.css": "./dist/index.css",
"./v2/styles.css": "./dist/v2/index.css"
},
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"types": "./dist/index.d.cts",
"license": "MIT",
"peerDependencies": {
"react": "^18 || ^19 || ^19.0.0-rc"
},
"devDependencies": {
"@types/react": "^19.1.0",
"@types/react-syntax-highlighter": "^15.5.7",
"eslint": "^8.56.0",
"postcss": "^8.4.20",
"react": "^18.2.0",
"tailwindcss": "^3.3.0",
"vitest": "^3.2.4",
"tsdown": "^0.20.3",
"typescript": "^5.2.3",
"eslint-config-custom": "1.4.12",
"tailwind-config": "1.4.12",
"tsconfig": "1.4.12"
},
"dependencies": {
"@headlessui/react": "^2.2.9",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"@copilotkit/react-core": "1.54.0",
"@copilotkit/runtime-client-gql": "1.54.0",
"@copilotkit/shared": "1.54.0"
},
"keywords": [
"copilotkit",
"copilot",
"react",
"nextjs",
"nodejs",
"ai",
"assistant",
"javascript",
"automation",
"textarea"
],
"scripts": {
"build:css": "node -e \"const fs=require('fs');fs.mkdirSync('./dist/v2',{recursive:true});fs.cpSync('./src/v2/styles.css','./dist/v2/index.css')\"",
"build": "tsdown && pnpm run build:css",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"check-types": "tsc --noEmit",
"link:global": "pnpm link --global",
"unlink:global": "pnpm unlink --global",
"publint": "publint .",
"attw": "attw --pack . --profile node16"
}
}