-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 897 Bytes
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
{
"name": "compass-workspace",
"private": true,
"packageManager": "npm@11.8.0",
"workspaces": [
"apps/*",
"packages/*",
"editors/*",
"tests/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev:web": "npm run dev -w @compass/web",
"build:web": "npm run build -w @compass/web",
"typecheck:web": "npm run typecheck -w @compass/web",
"build:viewer": "npm run build -w @compass/viewer",
"build:vscode": "npm run build -w editors/vscode",
"test:js": "npm run test --workspaces --if-present",
"typecheck:js": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"@types/node": "^24.10.0",
"jsdom": "^27.0.0",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vitest": "^3.2.4"
}
}