-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.63 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": "yourgpt-copilot",
"version": "2.5.0",
"private": true,
"description": "Open-source SDK for building AI assistants",
"repository": {
"type": "git",
"url": "https://github.com/yourgpt/copilot-sdk.git"
},
"license": "MIT",
"author": "YourGPT",
"scripts": {
"build": "turbo build",
"dev": "turbo dev --filter=@yourgpt/copilot-sdk --filter=@yourgpt/llm-sdk --filter=@yourgpt/copilot-sdk-docs",
"dev:all": "turbo dev",
"dev:sdk": "turbo dev --filter=@yourgpt/copilot-sdk --filter=@yourgpt/llm-sdk",
"dev:docs": "turbo dev --filter=@yourgpt/copilot-sdk-docs",
"dev:demo": "turbo dev --filter=@yourgpt/copilot-sdk --filter=@yourgpt/llm-sdk",
"build:sdk": "turbo build --filter=@yourgpt/copilot-sdk --filter=@yourgpt/llm-sdk",
"lint": "turbo lint",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build && changeset publish",
"publish:sdk": "./scripts/publish.sh",
"publish:beta": "./scripts/publish-beta.sh",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.2.5",
"turbo": "^2.0.0",
"typescript": "^5.4.0"
},
"pnpm": {
"overrides": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0"
}
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}