-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.15 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
{
"name": "page-component-object",
"private": true,
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "turbo run build",
"pack:dist": "node scripts/pack.mjs",
"version:sync": "node scripts/sync-package-versions.mjs",
"sync:readmes": "node scripts/sync-package-readmes.mjs",
"test:consumer-smoke": "node scripts/consumer-smoke.mjs",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rimraf node_modules dist",
"publish:packages": "node scripts/sync-package-readmes.mjs && node scripts/prepare-publish.mjs && pnpm -r publish --access public --no-git-checks",
"prepublishOnly": "node -e \"console.error('\\n Do not npm publish from the monorepo root.\\n Use: pnpm build && pnpm test && pnpm publish:packages\\n'); process.exit(1)\""
},
"devDependencies": {
"rimraf": "^6.0.1",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"pnpm": {
"overrides": {
"@semantic-matchers/jest>@semantic-matchers/core": "0.1.1",
"@semantic-matchers/vitest>@semantic-matchers/core": "0.1.1",
"@semantic-matchers/vitest>@semantic-matchers/jest": "0.1.1"
}
}
}