pnpm workspace root for Barazo forum development — shared configuration, tooling, and cross-package dependency management
barazo.forum
1{
2 "name": "barazo-plugins",
3 "version": "0.0.0",
4 "private": true,
5 "type": "module",
6 "description": "Official and community plugins for the Barazo forum",
7 "packageManager": "pnpm@10.29.2",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/singi-labs/barazo-plugins.git"
12 },
13 "scripts": {
14 "build": "pnpm -r run build",
15 "test": "vitest run --passWithNoTests",
16 "test:watch": "vitest",
17 "lint": "eslint packages/ templates/",
18 "typecheck": "tsc -b",
19 "format": "prettier --write .",
20 "format:check": "prettier --check ."
21 },
22 "devDependencies": {
23 "@testing-library/jest-dom": "^6.9.1",
24 "@testing-library/react": "^16.3.2",
25 "@testing-library/user-event": "^14.6.1",
26 "@types/react": "^19.2.14",
27 "@types/react-dom": "^19.2.3",
28 "eslint": "9.29.0",
29 "jsdom": "^28.1.0",
30 "prettier": "3.6.2",
31 "react": "^19.2.4",
32 "react-dom": "^19.2.4",
33 "typescript": "5.9.3",
34 "typescript-eslint": "8.56.1",
35 "vitest": "4.0.18",
36 "zod": "4.3.6"
37 },
38 "engines": {
39 "node": ">=24.0.0"
40 }
41}