-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.64 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.64 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
{
"name": "aeye-monorepo",
"version": "0.3.7",
"private": true,
"description": "@aeye - AI TypeScript library collection",
"workspaces": [
"packages/core",
"packages/ai",
"packages/openai",
"packages/openrouter",
"packages/replicate",
"packages/aws",
"packages/models",
"packages/cletus",
"packages/test-integration"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"test:unit": "npm run test --workspaces --if-present --ignore @aeye/test-integration",
"test:integration": "cd packages/test-integration && npm test",
"coverage:report": "node scripts/merge-coverage.js",
"clean": "npm run clean --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"update:versions": "node scripts/update-versions.js",
"update:versions:patch": "node scripts/update-versions-patch.js",
"release": "npm publish --workspaces --access public"
},
"keywords": [
"ai",
"typescript",
"monorepo"
],
"author": "ClickerMonkey",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ClickerMonkey/aeye.git"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"autoprefixer": "^10.4.22",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.559.0",
"postcss": "^8.5.6",
"rimraf": "^6.1.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}