-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.6 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@aios/dashboard",
"private": true,
"version": "0.5.0",
"description": "AIOS Platform Dashboard — Vite + React SPA for AI agent orchestration",
"type": "module",
"scripts": {
"dev": "vite",
"dev:full": "bash scripts/dev-full.sh",
"engine": "cd engine && bun src/index.ts",
"engine:dev": "cd engine && bun --watch src/index.ts",
"engine:project": "cd engine && bun bin/aios-engine.ts",
"aios": "bun packages/cli/bin/aios.ts",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"prepare": "husky || true",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "patch-package",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:report": "playwright show-report",
"generate:registry": "npx tsx scripts/generate-aios-registry.ts",
"check:registry": "bash scripts/check-registry-sync.sh"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,json,md}": [
"prettier --write"
]
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@supabase/supabase-js": "^2.98.0",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-virtual": "^3.13.18",
"@types/react-syntax-highlighter": "^15.5.13",
"ansi-to-html": "^0.7.2",
"autoprefixer": "^10.4.24",
"clsx": "^2.1.1",
"framer-motion": "^11.18.2",
"geist": "^1.7.0",
"lucide-react": "^0.575.0",
"mermaid": "^11.12.3",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.19",
"zustand": "^4.5.7"
},
"overrides": {
"serialize-javascript": "^7.0.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.0",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.58.2",
"@storybook/addon-a11y": "^10.2.6",
"@storybook/addon-docs": "^10.2.6",
"@storybook/addon-onboarding": "^10.2.6",
"@storybook/addon-vitest": "^10.2.6",
"@storybook/react-vite": "^10.2.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/runner": "^4.0.18",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-storybook": "^10.2.6",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"lint-staged": "^16.2.7",
"patch-package": "^8.0.1",
"playwright": "^1.58.1",
"prettier": "^3.8.1",
"sharp": "^0.34.5",
"storybook": "^10.2.6",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18",
"vitest-axe": "^0.1.0",
"workbox-window": "^7.4.0"
}
}