forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.75 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@copilotkit/vue",
"version": "1.59.5",
"private": false,
"description": "Vue 3 components and composables for CopilotKit",
"keywords": [
"ai",
"assistant",
"automation",
"copilot",
"copilotkit",
"javascript",
"vue",
"vue3"
],
"homepage": "https://github.com/CopilotKit/CopilotKit",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git"
},
"type": "module",
"sideEffects": [
"**/*.css"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"typesVersions": {
"*": {
"v2": [
"./dist/v2/index.d.cts"
]
}
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./v2": {
"import": {
"types": "./dist/v2/index.d.mts",
"default": "./dist/v2/index.mjs"
},
"require": {
"types": "./dist/v2/index.d.cts",
"default": "./dist/v2/index.cjs"
}
},
"./styles.css": "./dist/styles.css",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build && pnpm build:css && pnpm build:types",
"build:css": "npx @tailwindcss/cli -i ./src/styles/globals.css -o ./dist/styles.css -m && node scripts/scope-preflight.mjs ./dist/styles.css",
"build:types": "vue-tsc -p tsconfig.json --declaration --emitDeclarationOnly --outDir dist --skipLibCheck && cp ./dist/index.d.ts ./dist/index.d.mts && cp ./dist/index.d.ts ./dist/index.d.cts && cp ./dist/v2/index.d.ts ./dist/v2/index.d.mts && cp ./dist/v2/index.d.ts ./dist/v2/index.d.cts",
"dev:css": "npx @tailwindcss/cli -i ./src/styles/globals.css -o ./dist/styles.css --watch --minify",
"dev": "concurrently \"pnpm dev:css\" \"vite build --watch\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint .",
"check-types": "vue-tsc --noEmit",
"publint": "publint .",
"attw": "attw --pack . --profile node16 --exclude-entrypoints ./styles.css --ignore-rules internal-resolution-error",
"clean": "rm -rf dist"
},
"dependencies": {
"@a2ui/web_core": "0.9.0",
"@ag-ui/client": "0.0.53",
"@ag-ui/core": "0.0.53",
"@copilotkit/core": "workspace:*",
"@copilotkit/shared": "workspace:*",
"@copilotkit/web-inspector": "workspace:*",
"@jetbrains/websandbox": "^1.1.3",
"katex": "^0.16.27",
"lucide-vue-next": "^0.525.0",
"streamdown-vue": "^1.0.29",
"zod": "^3.25.75",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@copilotkit/typescript-config": "workspace:*",
"@eslint/js": "^9.39.2",
"@tailwindcss/cli": "^4.1.11",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/vue": "^8.1.0",
"@types/node": "^22.15.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.14",
"@vue/test-utils": "^2.4.6",
"arktype": "^2.1.29",
"concurrently": "^9.1.0",
"eslint": "^9.30.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^16.5.0",
"jsdom": "^26.1.0",
"phoenix": "^1.8.4",
"postcss": "^8.5.6",
"rxjs": "7.8.1",
"tailwindcss": "^4.0.8",
"tw-animate-css": "^1.3.5",
"typescript": "5.8.2",
"typescript-eslint": "^8.52.0",
"valibot": "^1.3.0",
"vite": "^6.0.0",
"vitest": "^4.1.3",
"vue": "^3.5.28",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^2.1.10"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"engines": {
"node": ">=18"
}
}