-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.58 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.58 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
{
"name": "@banegasn/components",
"version": "1.0.0",
"private": true,
"description": "Banegasn component library monorepo using Turborepo and PNPM",
"scripts": {
"build": "turbo run build",
"build:gh-pages": "pnpm build --filter='./packages/*' && pnpm --filter @apps/angular-app build:gh-pages",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"publish:npm": "bash scripts/publish-unpublished.sh npm",
"publish:github": "bash scripts/publish-unpublished.sh github",
"publish:npm:force": "bash scripts/publish-unpublished.sh npm --force",
"publish:github:force": "bash scripts/publish-unpublished.sh github --force",
"version:patch": "pnpm --filter \"./packages/*\" exec -- npm version patch",
"version:minor": "pnpm --filter \"./packages/*\" exec -- npm version minor",
"version:major": "pnpm --filter \"./packages/*\" exec -- npm version major",
"screenshots": "node scripts/screenshot-packages.js",
"screenshots:dark": "node scripts/screenshot-packages.js --theme dark",
"screenshots:both": "node scripts/screenshot-packages.js --theme both"
},
"repository": {
"type": "git",
"url": "git+https://github.com/banegasn/components.git"
},
"author": "banegasn",
"license": "MIT",
"devDependencies": {
"turbo": "^2.1.3",
"playwright": "^1.49.0"
},
"packageManager": "pnpm@9.12.1",
"engines": {
"node": ">=22.16.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"browserslist": "4.28.1"
}
}
}