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
35 lines (35 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 841 Bytes
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
{
"name": "@copilotkit/shared",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.2.0",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch --no-splitting",
"test": "jest",
"check-types": "tsc --noEmit",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next"
},
"peerDependencies": {},
"devDependencies": {
"@types/jest": "^29.5.4",
"eslint": "^7.32.0",
"eslint-config-custom": "workspace:*",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"tsconfig": "workspace:*",
"tsup": "^6.7.0",
"typescript": "^5.1.3"
},
"dependencies": {}
}