-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.52 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
{
"name": "uniqueui-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "pnpm dev:docs",
"dev:docs": "pnpm --dir apps/www dev",
"dev:cli": "pnpm --dir packages/cli dev",
"prebuild:registry": "pnpm --filter @uniqueui/registry-schema build",
"build:registry": "ts-node scripts/build-registry.ts",
"preregistry:validate": "pnpm --filter @uniqueui/registry-schema build",
"registry:validate": "node scripts/validate-registry.mjs",
"test:e2e": "pnpm --dir apps/www test:e2e",
"test:e2e:shadcn": "npx ts-node scripts/test-shadcn-all-components.ts",
"test": "turbo run test",
"test:ci": "pnpm --filter @uniqueui/registry-schema test && pnpm --filter @uniqueui/cli-core test && pnpm --dir packages/cli test && pnpm --dir apps/www test && pnpm test:repo",
"test:repo": "pnpm exec vitest run scripts/check-cli-readme-drift.test.ts scripts/check-agent-docs-drift.test.ts scripts/check-reduced-motion.test.ts scripts/compute-cross-links.test.ts scripts/changelogs-from-manifests.test.ts scripts/scaffold-component.test.ts scripts/assemble-demos.test.ts scripts/sync-version.test.ts",
"new:component": "node scripts/scaffold-component.mjs",
"check:cli-readme": "node scripts/check-cli-readme-drift.mjs",
"check:agent-docs": "node scripts/check-agent-docs-drift.mjs",
"check:reduced-motion": "node scripts/check-reduced-motion.mjs",
"lint:cli": "pnpm --dir packages/cli exec eslint src --ext .ts --config eslint.config.mjs && pnpm --dir packages/cli-core exec eslint src --ext .ts --config eslint.config.mjs",
"lint:docs": "pnpm --dir apps/www lint",
"lint": "pnpm lint:cli && pnpm lint:docs",
"build": "turbo run build",
"typecheck": "pnpm --filter @uniqueui/cli-core exec tsc --noEmit && pnpm --dir packages/cli exec tsc --noEmit && pnpm --dir apps/www exec tsc --noEmit",
"deadcode": "knip --config knip.json",
"changeset": "changeset",
"version-packages": "changeset version && node scripts/sync-version.mjs && node scripts/sync-root-changelog.mjs",
"release": "pnpm build:registry && pnpm --dir packages/cli build && changeset publish",
"prepare": "husky",
"precommit": "./scripts/pre-commit.sh",
"changelog:verify": "bash scripts/verify-changelog.sh",
"changeset:quality": "node scripts/verify-changeset-quality.mjs"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@uniqueui/registry-schema": "workspace:*",
"@eslint/js": "^9.39.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"clsx": "^2.1.1",
"eslint": "^9.39.1",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"knip": "^5.63.1",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0",
"ts-node": "^10.9.2",
"turbo": "^2.3.3",
"typescript": "^5.3.3",
"typescript-eslint": "^8.46.2",
"vitest": "^4.0.18",
"vitest-fetch-mock": "^0.4.5",
"zod": "^3.25.76"
},
"engines": {
"node": "24.x"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"minimatch": "^9.0.8",
"flatted": "^3.4.0",
"postcss": "^8.5.10",
"diff": "^4.0.4",
"picomatch": "^4.0.4",
"ajv": "^6.14.0",
"brace-expansion": "^2.0.3"
}
},
"dependencies": {
"motion": "^12.26.0"
}
}