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
56 lines (56 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "@copilotkit/web-inspector",
"version": "1.59.5",
"description": "Lit-based web component for the CopilotKit web inspector",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown && pnpm run build:css",
"compat-check": "es-check es2022 --module 'dist/**/!(*.umd).{mjs,cjs,js}' && es-check es2018 'dist/**/*.umd.js'",
"build:css": "tailwindcss -i ./src/styles/tailwind.css -o ./src/styles/generated.css -m",
"dev": "pnpm run build:css && concurrently \"pnpm run dev:css\" \"tsdown --watch\"",
"dev:css": "tailwindcss -i ./src/styles/tailwind.css -o ./src/styles/generated.css --watch --minify",
"check-types": "pnpm run build:css && tsc --noEmit",
"test": "pnpm run build:css && vitest run",
"publint": "publint .",
"attw": "attw --pack . --profile node16"
},
"dependencies": {
"@ag-ui/client": "0.0.53",
"@copilotkit/core": "workspace:*",
"lit": "^3.2.0",
"lucide": "^0.525.0",
"marked": "^12.0.2"
},
"devDependencies": {
"@copilotkit/typescript-config": "workspace:*",
"@tailwindcss/cli": "^4.1.11",
"@types/node": "^22.15.3",
"concurrently": "^9.1.0",
"tailwindcss": "^4.0.8",
"tsdown": "^0.20.3",
"typescript": "5.8.2",
"vitest": "^3.0.5"
},
"engines": {
"node": ">=18"
}
}