-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.37 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
{
"name": "community",
"private": true,
"description": "Community libraries maintained by builder.group",
"keywords": [],
"homepage": "https://builder.group/?utm_source=package-json",
"bugs": {
"url": "https://github.com/builder-group/community/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/builder-group/community.git"
},
"license": "MIT",
"author": "@bennobuilder",
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build:prod --filter='./packages/*'",
"clean": "turbo run clean && shx rm -rf .turbo && shx rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,cjs,mjs,md,mdx,json,css}\"",
"install:clean": "pnpm run clean && pnpm install && pnpm build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint --force -- --fix",
"test": "turbo run test",
"update:latest": "turbo run update:latest --force && pnpm update --latest && pnpm build"
},
"devDependencies": {
"@blgc/config": "workspace:*",
"@size-limit/esbuild": "^12.1.0",
"@size-limit/esbuild-why": "^12.1.0",
"@size-limit/preset-small-lib": "^12.1.0",
"eslint": "^10.4.1",
"prettier": "^3.8.4",
"rollup": "^4.61.1",
"shx": "^0.4.0",
"size-limit": "^12.1.0",
"turbo": "^2.9.16",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"packageManager": "pnpm@11.3.0",
"engines": {
"node": ">=24"
}
}