-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 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
45
46
47
48
49
50
51
52
{
"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:prod": "turbo run build:prod",
"clean": "turbo run clean && shx rm -rf .turbo && shx rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,json,js,jsx}\"",
"install:clean": "pnpm clean && pnpm install && pnpm build",
"lint": "turbo run lint",
"packages:change": "changeset",
"packages:publish": "pnpm build:prod && changeset publish",
"packages:version": "changeset version",
"test": "turbo run test",
"update:latest": "turbo run update:latest --force && pnpm update --latest '!eslint' '!@eslint/js' && pnpm build"
},
"devDependencies": {
"@blgc/config": "workspace:*",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@size-limit/esbuild": "^12.0.0",
"@size-limit/esbuild-why": "^12.0.0",
"@size-limit/preset-small-lib": "^12.0.0",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"rollup": "^4.57.1",
"shx": "^0.4.0",
"size-limit": "^12.0.0",
"turbo": "^2.8.4",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=24"
}
}