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
122 lines (122 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.25 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
{
"name": "copilotkit",
"description": "CopilotKit CLI",
"version": "1.0.0",
"author": "CopilotKit",
"bin": {
"copilotkit": "./bin/run.js",
"cpk": "./bin/run.js"
},
"bugs": "https://github.com/CopilotKit/CopilotKit/issues",
"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",
"lint": "echo oops",
"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",
"express": "^4.21.2",
"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",
"zod": "^3.22.4",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"tar": "6.1.13"
},
"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/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",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9",
"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",
"@types/fs-extra": "^11.0.4",
"@types/tar": "6.1.13"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"homepage": "https://github.com/CopilotKit/CopilotKit/tree/main/packages/cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "copilotkit",
"dirname": "copilotkit",
"commands": "./dist/commands",
"topicSeparator": " ",
"topics": {
"tunnel": {
"description": "Create a local tunnel to expose your agent to the internet"
},
"login": {
"description": "Authenticate with Copilot Cloud"
},
"skill": {
"description": "Install and manage CopilotKit skills for AI coding agents"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git",
"directory": "packages/cli"
},
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
}
}