-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.06 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.06 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@bfra.me/works",
"version": "0.0.0-development",
"private": true,
"description": "bfra.me tools and components",
"keywords": [
"Build Frameworks",
"CLI",
"Components",
"Tools",
"bfra.me"
],
"license": "MIT",
"author": "Marcus R. Brown <contact@bfra.me>",
"type": "module",
"exports": {
"./eslint.config": "./eslint.config.ts",
"./tsup.dts": "./tsup.dts.ts"
},
"scripts": {
"analyze": "pnpm --filter @bfra.me/workspace-analyzer build && node packages/workspace-analyzer/lib/cli.js",
"bootstrap": "pnpm -r install --prefer-offline --loglevel warn",
"build": "pnpm -r --stream run build && pnpm lint-packages",
"clean": "pnpx rimraf --glob \"**/node_modules/**/!(.pnpm)\" \"packages/*/lib\" \"**/.turbo\" \"**/*.tsbuildinfo\" .eslintcache .workspace-analyzer-cache",
"clean-changesets": "tsx ./scripts/src/clean-changesets.ts",
"dev": "pnpm --recursive --parallel --stream run dev",
"fix": "manypkg fix && pnpm lint-source --fix",
"inspect-eslint-config": "eslint-config-inspector --config eslint.config.ts --open false",
"lint": "manypkg check && pnpm lint-source",
"lint-packages": "pnpm -r --include-workspace-root --parallel exec publint",
"lint-source": "eslint --cache",
"precommit": "lint-staged",
"prepare": "pnpm --filter docs astro sync && husky",
"publish-changesets": "changeset publish",
"test": "vitest run",
"type-check": "tsc --noEmit",
"type-coverage": "type-coverage --project .",
"type-coverage:detail": "type-coverage --detail --project .",
"type-coverage:report": "type-coverage --detail --reportSemanticError --project .",
"validate": "pnpm run type-check & pnpm run lint & pnpm run test & wait && pnpm run build && pnpm run type-coverage",
"version-changesets": "pnpm run clean-changesets && changeset version && pnpm bootstrap --no-frozen-lockfile && pnpm build && pnpm --filter docs sync-versions",
"watch": "pnpm run build --watch"
},
"lint-staged": {
"*": "eslint --cache --fix --ignore-pattern 'packages/create/templates/**' --ignore-pattern '**/fixtures/input/**' --no-warn-ignored"
},
"prettier": "./packages/prettier-config/prettier.config.cjs",
"devDependencies": {
"@changesets/cli": "2.31.0",
"@eslint/config-inspector": "1.5.0",
"@manypkg/cli": "0.25.1",
"@microsoft/api-extractor": "7.58.7",
"@svitejs/changesets-changelog-github-compact": "1.2.0",
"@types/fs-extra": "11.0.4",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.5",
"eslint": "10.2.1",
"execa": "9.6.1",
"fast-glob": "3.3.3",
"flatted": "3.4.2",
"fs-extra": "11.3.4",
"husky": "9.1.7",
"jiti": "2.6.1",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"publint": "0.3.18",
"rimraf": "6.1.3",
"tsup": "8.5.1",
"tsx": "4.21.0",
"type-coverage": "2.29.7",
"type-fest": "5.6.0",
"typescript": "6.0.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.5",
"zod": "4.4.1"
},
"packageManager": "pnpm@10.33.2",
"manypkg": {
"workspaceProtocol": "require"
}
}