-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.64 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.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
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
115
116
117
118
119
120
121
122
123
{
"name": "openroom",
"version": "0.1.0",
"description": "An AI-powered desktop environment built with React, where an Agent can interact with multiple apps through natural language.",
"private": true,
"license": "MIT",
"author": "MiniMax",
"homepage": "https://github.com/MiniMax-AI/OpenRoom",
"repository": {
"type": "git",
"url": "https://github.com/MiniMax-AI/OpenRoom.git"
},
"bugs": {
"url": "https://github.com/MiniMax-AI/OpenRoom/issues"
},
"keywords": [
"vibe-coding",
"react",
"ai-agent",
"desktop-environment",
"micro-frontend"
],
"scripts": {
"commitlint": "commitlint --config .commitlintrc -e -V",
"lint-staged": "lint-staged",
"prepare": "husky install",
"pretty": "prettier --write ./{apps,packages}/**/*.{ts,tsx,js,jsx,md,json,less,scss,css,html} --no-error-on-unmatched-pattern",
"lint": "eslint ./{apps,packages}/**/*.{ts,tsx,js,jsx} --fix --color --quiet --no-error-on-unmatched-pattern",
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "turbo run clean",
"release": "echo 'Configure your own release pipeline'",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@playwright/test": "^1.58.2",
"@sentry/vite-plugin": "^2.21.1",
"@types/node": "^20.8.7",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.170.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-legacy": "5.4.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.16",
"css-loader": "^6.7.3",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-formatter-table": "^7.32.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lint-staged": "^15.0.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.75.0",
"turbo": "^2",
"typescript": "^5.0.2",
"vite": "^4.4.5"
},
"dependencies": {
"@gui/vibe-container": "workspace:*",
"@react-spring/three": "^9.7.5",
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.18.0",
"@tiptap/extension-placeholder": "^3.19.0",
"@tiptap/pm": "^3.19.0",
"@tiptap/react": "^3.19.0",
"@tiptap/starter-kit": "^3.19.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.10",
"framer-motion": "^12.34.0",
"i18next": "^23.11.4",
"intl-pluralrules": "^2.0.1",
"lucide-react": "^0.563.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.17.0",
"tailwind-merge": "^3.4.0",
"three": "^0.170.0",
"tiptap-markdown": "^0.9.0"
},
"packageManager": "pnpm@9.0.0",
"pnpm": {
"overrides": {
"test-exclude": "^8.0.0"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"pnpm run pretty",
"pnpm run lint"
]
}
}