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
95 lines (95 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.1 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
{
"name": "@copilotkit/angular",
"version": "0.1.1",
"description": "Angular library for CopilotKit",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git",
"directory": "packages/angular"
},
"type": "module",
"main": "dist/fesm2022/copilotkit-angular.mjs",
"module": "dist/fesm2022/copilotkit-angular.mjs",
"types": "dist/types/copilotkit-angular.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/copilotkit-angular.d.ts",
"default": "./dist/fesm2022/copilotkit-angular.mjs"
}
},
"./styles.css": "./dist/styles.css"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "ng-packagr -p ng-package.json && npm run build:css",
"build:css": "tailwindcss -i ./src/styles/globals.css -o ./src/styles/generated.css && node scripts/scope-preflight.mjs ./src/styles/generated.css && mkdir -p ./dist && cp ./src/styles/generated.css ./dist/styles.css",
"dev": "concurrently \"ng-packagr -p ng-package.json --watch\" \"npm run dev:css\"",
"dev:css": "tailwindcss -i ./src/styles/globals.css -o ./src/styles/generated.css --watch",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest --watch",
"publint": "publint .",
"attw": "attw --pack . --profile node16"
},
"dependencies": {
"@ag-ui/client": "0.0.57",
"@ag-ui/core": "0.0.57",
"@copilotkit/a2ui-renderer": "workspace:*",
"@copilotkit/core": "workspace:*",
"@copilotkit/shared": "workspace:*",
"@jetbrains/websandbox": "^1.1.3",
"clsx": "^2.1.1",
"highlight.js": "^11.11.1",
"katex": "^0.16.22",
"lucide-angular": "^0.540.0",
"marked": "^16.2.0",
"rxjs": "^7.8.1",
"tailwind-merge": "^2.6.0",
"tslib": "^2.6.0",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.20.2",
"@analogjs/vitest-angular": "^1.20.2",
"@angular/cdk": "^21.2.13",
"@angular/common": "^21.2.15",
"@angular/compiler": "^21.2.15",
"@angular/compiler-cli": "^21.2.15",
"@angular/core": "^21.2.15",
"@angular/platform-browser": "^21.2.15",
"@angular/platform-browser-dynamic": "^21.2.15",
"@copilotkit/typescript-config": "workspace:*",
"@lucide/build-icons": "^1.1.0",
"@tailwindcss/cli": "^4.1.11",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"@types/katex": "^0.16.7",
"@types/node": "^22.5.1",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.16",
"concurrently": "^9.1.0",
"jsdom": "^24.0.0",
"ng-packagr": "^21.2.3",
"postcss": "^8.4.31",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"tailwindcss": "^4.0.8",
"tslib": "^2.8.1",
"tw-animate-css": "^1.3.5",
"typescript": "5.9.3",
"vite": "^7.1.4",
"vitest": "^3.2.4",
"zod": "^3.22.4"
},
"peerDependencies": {
"@angular/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0",
"@angular/common": "^19.0.0 || ^20.0.0 || ^21.0.0",
"@angular/core": "^19.0.0 || ^20.0.0 || ^21.0.0",
"rxjs": "^7.8.0"
}
}