-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.93 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.93 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
{
"name": "openassistantgpt",
"version": "0.3.16",
"license": "Apache-2.0",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"dev": "tsup --watch",
"lint": "eslint \"./**/*.ts*\"",
"type-check": "tsc --noEmit",
"prettier-check": "prettier --check \"./**/*.ts*\"",
"test": "vitest --config vitest.config.js --run",
"test:watch": "vitest --config vitest.config.js"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"dependencies": {
"@openassistantgpt/assistant": "workspace:*",
"@openassistantgpt/react": "workspace:*",
"@openassistantgpt/ui": "workspace:*"
},
"devDependencies": {
"@openassistantgpt/tsconfig": "workspace:*",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.16.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"eslint": "^9.32.0",
"eslint-config-openassistantgpt": "workspace:*",
"jsdom": "^24.1.3",
"msw": "2.3.1",
"react-dom": "^18.3.1",
"tsup": "^7.2.0",
"typescript": "5.1.3",
"zod": "3.23.8"
},
"peerDependencies": {
"react": "^18 || ^19",
"zod": "^3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"zod": {
"optional": true
}
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://openassistantgpt.io",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAssistantGPT/OpenAssistantGPT-SDK.git"
},
"bugs": {
"url": "https://github.com/OpenAssistantGPT/OpenAssistantGPT-SDK/issues"
},
"keywords": [
"ai"
]
}