-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.2 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
{
"name": "object-ui-monorepo",
"private": true,
"license": "MIT",
"homepage": "https://www.objectui.org",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"workspaces": [
"packages/*",
"examples/*",
"apps/*",
"docs"
],
"scripts": {
"dev": "pnpm --filter prototype dev",
"start": "pnpm --filter prototype dev",
"build": "pnpm --filter './packages/*' -r build && pnpm --filter './examples/*' -r build",
"pretest": "pnpm --filter @object-ui/types build && pnpm --filter @object-ui/core build && pnpm --filter @object-ui/react build && pnpm --filter @object-ui/components build",
"test": "vitest run",
"docs:dev": "pnpm --filter object-ui-docs dev",
"docs:build": "pnpm --filter object-ui-docs build",
"docs:preview": "pnpm --filter object-ui-docs preview",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "pnpm -r lint",
"cli": "node packages/cli/dist/cli.js",
"objectui": "node packages/cli/dist/cli.js",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.8",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"happy-dom": "^20.3.0",
"jsdom": "^27.4.0",
"prettier": "^3.8.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "^3.0.0",
"tslib": "^2.6.0",
"turbo": "^2.6.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"react": "18.3.1",
"react-dom": "18.3.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1"
}
},
"dependencies": {
"coverage-v8": "0.0.1-security"
}
}