55 lines
1.8 KiB
JSON
55 lines
1.8 KiB
JSON
{
|
|
"name": "@copilotkitnext/web-inspector",
|
|
"version": "1.54.0",
|
|
"deprecated": "This package is deprecated. Use @copilotkit/web-inspector instead. V2 features are being integrated into the main @copilotkit exports and will be available under the /v2 subpath.",
|
|
"description": "Lit-based web component for the CopilotKit web inspector",
|
|
"main": "./dist/index.cjs",
|
|
"types": "./dist/index.d.cts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"unpkg": "./dist/index.umd.js",
|
|
"jsdelivr": "./dist/index.umd.js",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@ag-ui/client": "0.0.47",
|
|
"lit": "^3.2.0",
|
|
"lucide": "^0.525.0",
|
|
"marked": "^12.0.2",
|
|
"@copilotkitnext/core": "1.54.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/cli": "^4.1.11",
|
|
"@types/node": "^22.15.3",
|
|
"concurrently": "^9.1.0",
|
|
"eslint": "^9.30.0",
|
|
"tailwindcss": "^4.0.8",
|
|
"tsdown": "^0.20.3",
|
|
"typescript": "5.8.2",
|
|
"vitest": "^3.0.5",
|
|
"@copilotkitnext/eslint-config": "1.54.0",
|
|
"@copilotkitnext/typescript-config": "1.54.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"module": "./dist/index.mjs",
|
|
"scripts": {
|
|
"build": "tsdown && pnpm run build:css",
|
|
"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",
|
|
"lint": "eslint .",
|
|
"check-types": "pnpm run build:css && tsc --noEmit",
|
|
"test": "pnpm run build:css && vitest run",
|
|
"publint": "publint .",
|
|
"attw": "attw --pack . --profile node16"
|
|
}
|
|
} |