-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.86 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.86 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
{
"name": "object-ui-monorepo",
"private": true,
"type": "module",
"license": "MIT",
"homepage": "https://www.objectui.org",
"packageManager": "pnpm@10.31.0",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"workspaces": [
"packages/*",
"examples/*",
"apps/*",
"docs"
],
"scripts": {
"dev": "pnpm --filter @object-ui/console dev",
"start": "pnpm --filter @object-ui/console preview",
"build": "turbo run build --filter=!@object-ui/site",
"build:all": "turbo run build",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project ui",
"site:dev": "pnpm --filter @object-ui/site dev",
"site:build": "pnpm --filter @object-ui/site build",
"site:start": "pnpm --filter @object-ui/site start",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"cli": "node packages/cli/dist/cli.js",
"objectui": "node packages/cli/dist/cli.js",
"create-plugin": "node packages/create-plugin/dist/index.js",
"docs:api": "typedoc",
"docs:check-links": "node scripts/check-doc-links.mjs",
"doctor": "node packages/cli/dist/cli.js doctor",
"studio": "node packages/cli/dist/cli.js studio",
"check": "node packages/cli/dist/cli.js check",
"generate": "node packages/cli/dist/cli.js generate",
"g": "node packages/cli/dist/cli.js generate",
"shadcn:analyze": "node scripts/component-analysis.js",
"shadcn:check": "node scripts/shadcn-sync.js --check",
"shadcn:update": "node scripts/shadcn-sync.js --update",
"shadcn:update-all": "node scripts/shadcn-sync.js --update-all --backup",
"build:console": "pnpm --filter @object-ui/console build",
"shadcn:diff": "node scripts/shadcn-sync.js --diff",
"shadcn:list": "node scripts/shadcn-sync.js --list",
"changeset:check": "node scripts/check-changeset-fixed.mjs",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@objectstack/spec": "^7.8.0",
"@playwright/test": "^1.60.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.1",
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/ui": "^4.1.8",
"autoprefixer": "^10.5.0",
"axe-core": "^4.12.0",
"concurrently": "^9.2.1",
"eslint": "^10.4.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"jsdom": "^29.1.1",
"msw": "^2.14.6",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-router-dom": "^7.16.0",
"rollup-plugin-visualizer": "^7.0.1",
"tailwindcss": "^4.3.0",
"tslib": "^2.8.1",
"tsx": "^4.22.4",
"turbo": "^2.9.16",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vite-plugin-compression2": "^2.5.3",
"vitest": "^4.1.8",
"vitest-axe": "^0.1.0",
"wait-on": "^9.0.10"
},
"pnpm": {
"overrides": {
"react": "19.2.7",
"react-dom": "19.2.7",
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3",
"dompurify": "^3.4.5",
"qs@<6.15.2": "^6.15.2",
"tmp@<0.2.6": "^0.2.6",
"uuid@<11.1.1": "^11.1.1"
}
},
"dependencies": {
"coverage-v8": "0.0.1-security"
},
"msw": {
"workerDirectory": [
"public"
]
}
}