-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.61 KB
/
package.json
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
{
"name": "community",
"private": true,
"description": "Community libraries maintained by builder.group",
"keywords": [],
"homepage": "https://builder.group/?source=github",
"bugs": {
"url": "https://github.com/builder-group/monorepo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/builder-group/monorepo.git"
},
"license": "MIT",
"author": "@bennobuilder",
"scripts": {
"build": "pnpm build:cli && turbo run build",
"build:cli": "turbo run build --filter=@blgc/cli && pnpm run cli:hello",
"build:prod": "pnpm build:cli && turbo run build:prod",
"clean": "turbo run clean && shx rm -rf node_modules",
"cli:hello": "chmod +x ./scripts/cli.sh && sh ./scripts/cli.sh hello",
"format": "prettier --write \"**/*.{ts,tsx,md,json,js,jsx}\"",
"install:clean": "pnpm run clean && pnpm install",
"lint": "turbo lint",
"packages:change": "changeset",
"packages:publish": "changeset publish",
"packages:version": "changeset version",
"update:latest": "turbo run update:latest"
},
"devDependencies": {
"@blgc/cli": "workspace:*",
"@blgc/config": "workspace:*",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@size-limit/esbuild": "^11.1.6",
"@size-limit/esbuild-why": "^11.1.6",
"@size-limit/preset-small-lib": "^11.1.6",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"shx": "^0.3.4",
"size-limit": "^11.1.6",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}