mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
79ce60c580
Replace eslint and prettier with oxlint and oxfmt for faster linting and formatting across the monorepo. Remove all eslint and prettier configs, dependencies, and related packages. Add .oxlintrc.json and .oxfmtrc.json for the new tooling. Update CI workflows and lefthook hooks accordingly. Reformat codebase with oxfmt. https://claude.ai/code/session_01GMkSf29p78HuMR1mbXn8He
115 lines
3.0 KiB
JSON
115 lines
3.0 KiB
JSON
{
|
|
"name": "copilotkit",
|
|
"version": "1.0.0",
|
|
"description": "CopilotKit CLI",
|
|
"keywords": [
|
|
"oclif"
|
|
],
|
|
"homepage": "https://github.com/CopilotKit/CopilotKit/tree/main/packages/cli",
|
|
"bugs": "https://github.com/CopilotKit/CopilotKit/issues",
|
|
"license": "MIT",
|
|
"author": "CopilotKit",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/CopilotKit/CopilotKit.git",
|
|
"directory": "packages/cli"
|
|
},
|
|
"bin": {
|
|
"copilotkit": "./bin/run.js",
|
|
"cpk": "./bin/run.js"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/dist",
|
|
"/oclif.manifest.json"
|
|
],
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"clean": "shx rm -rf dist",
|
|
"extract-version": "node -p \"'// This is auto generated!\\nexport const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/utils/version.ts",
|
|
"prebuild": "pnpm run clean && pnpm run extract-version",
|
|
"build": "tsup",
|
|
"generate-manifest": "oclif manifest",
|
|
"prepublishOnly": "pnpm run build && pnpm run generate-manifest",
|
|
"test": "jest",
|
|
"version": "oclif readme && git add README.md",
|
|
"validate": "node validate-package.js"
|
|
},
|
|
"dependencies": {
|
|
"@oclif/core": "^4.2.0",
|
|
"@paralleldrive/cuid2": "^2.2.2",
|
|
"@segment/analytics-node": "^2.1.2",
|
|
"@sentry/node": "^7.116.0",
|
|
"@trpc/client": "^11.0.1",
|
|
"@trpc/server": "^11.0.1",
|
|
"ansis": "^3.3.2",
|
|
"axios": "^1.7.8",
|
|
"chalk": "^5.3.0",
|
|
"conf": "^13.1.0",
|
|
"cors": "^2.8.5",
|
|
"cross-spawn": "^7.0.6",
|
|
"execa": "^8.0.1",
|
|
"express": "^4.21.2",
|
|
"fs-extra": "^11.2.0",
|
|
"get-port": "^7.1.0",
|
|
"inquirer": "^12.3.0",
|
|
"localtunnel": "^2.0.2",
|
|
"open": "^10.1.0",
|
|
"ora": "^8.1.1",
|
|
"posthog-node": "^4.0.1",
|
|
"superjson": "^2.2.1",
|
|
"tar": "6.1.13",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "30.0.0-beta.3",
|
|
"@oclif/prettier-config": "^0.2.1",
|
|
"@oclif/test": "^4",
|
|
"@types/chai": "^4.3.20",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/cross-spawn": "^6.0.6",
|
|
"@types/express": "^5.0.0",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/jest": "^29.5.2",
|
|
"@types/localtunnel": "^2.0.4",
|
|
"@types/mocha": "^10",
|
|
"@types/node": "^18",
|
|
"@types/sinon": "^17.0.3",
|
|
"@types/sinon-chai": "^4.0.0",
|
|
"@types/tar": "6.1.13",
|
|
"chai": "^4",
|
|
"jest": "^29.5.0",
|
|
"mocha": "^10",
|
|
"oclif": "^4",
|
|
"shx": "^0.3.3",
|
|
"sinon": "^19.0.2",
|
|
"sinon-chai": "^4.0.0",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-node": "^10",
|
|
"tsup": "^8.0.2",
|
|
"typescript": "^5"
|
|
},
|
|
"oclif": {
|
|
"bin": "copilotkit",
|
|
"commands": "./dist/commands",
|
|
"dirname": "copilotkit",
|
|
"topicSeparator": " ",
|
|
"topics": {
|
|
"login": {
|
|
"description": "Authenticate with Copilot Cloud"
|
|
},
|
|
"tunnel": {
|
|
"description": "Create a local tunnel to expose your agent to the internet"
|
|
}
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|