-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
101 lines (101 loc) · 2.87 KB
/
package.json
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
{
"name": "chrome-ai",
"description": "Vercel AI provider for Chrome built-in model (Gemini Nano)",
"version": "1.11.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./polyfill": {
"import": "./dist/polyfill.mjs",
"require": "./dist/polyfill.js",
"types": "./dist/polyfill.d.ts"
}
},
"sideEffects": [
"./dist/polyfill.global.js",
"./dist/polyfill.js",
"./dist/polyfill.mjs"
],
"scripts": {
"dev": "tsup --tsconfig=tsconfig.tsup.json --watch",
"build": "tsup --tsconfig=tsconfig.tsup.json --clean",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ci": "vitest --run",
"ui:add": "shadcn-ui add --overwrite",
"demo": "next dev",
"lint": "next lint",
"changeset": "changeset",
"release:prepare": "npm run lint && npm run test:ci && npm run build",
"release": "npm run release:prepare && changeset version && changeset publish"
},
"files": [
"dist"
],
"author": "jeasonstudio <me@cowpoke.cc>",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@ai-sdk/provider": "^0.0.21",
"@mediapipe/tasks-genai": "0.10.14",
"@mediapipe/tasks-text": "0.10.14",
"debug": "^4.3.6"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@hookform/resolvers": "^3.6.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@tailwindcss/typography": "^0.5.14",
"@types/debug": "^4.1.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitest/coverage-v8": "^2.0.5",
"ai": "^3.3.16",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"lucide-react": "^0.424.0",
"marked": "^14.0.0",
"next": "14.2.5",
"next-themes": "^0.3.0",
"postcss": "^8.4.41",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.2",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"shadcn-ui": "^0.8.0",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.8",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.2.4",
"typescript": "^5",
"use-ai-lib": "0.0.3-alpha",
"vaul": "^0.9.1",
"vercel": "^35.2.3",
"vitest": "^2.0.5",
"zod": "^3.23.8"
}
}