-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.94 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
{
"name": "@booga/vchat",
"version": "0.3.0",
"description": "Chat UI over any OpenAI-compatible endpoint. Provider abstraction, streaming deltas, tool-call dispatch, accessible components.",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup && npm run build:css",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run --coverage",
"test:watch": "vitest",
"build:css": "tailwindcss -i ./styles-entry.css -c ./tailwind.config.js -o ./dist/styles.css --minify"
},
"dependencies": {
"@booga/vforms": "^0.3.0",
"@booga/vhooks": "^0.1.0",
"@booga/vui": "^0.3.0",
"zod": "^3.0.0",
"zod-to-json-schema": "^3.0.0",
"clsx": "^2.0.0",
"tailwind-merge": "^2.0.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-istanbul": "^3.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"jsdom": "^25.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0",
"tailwindcss": "^3.4.0",
"@booga/vtheme": "^0.2.1"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "bvasilenko"
}