-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.33 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"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 <[email protected]>",
"type": "module",
"scripts": {
"bootstrap": "pnpm install --prefer-offline --loglevel error",
"build": "pnpm -r --stream run build && pnpm lint-packages",
"check-format": "prettier --config ./package.json --check .",
"clean": "pnpx rimraf --glob \"**/node_modules/**/!(.pnpm)\" \"packages/*/lib\" \"packages/api-core/dist\" \"packages/eslint-config/src/types?(.d).ts\" \"**/*.tsbuildinfo\"",
"dev": "pnpm --recursive --parallel --stream run dev",
"fix": "manypkg fix && pnpm lint-source --fix",
"format": "prettier --config ./package.json --write .",
"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 [email protected]/prettier-config exec publint",
"lint-source": "TIMING=1 eslint --flag unstable_config_lookup_from_file .",
"publish-changesets": "changeset publish",
"test": "pnpm -r --parallel --aggregate-output run test",
"version-changesets": "changeset version && pnpm install --no-frozen-lockfile",
"watch": "pnpm run build --watch"
},
"prettier": "@bfra.me/prettier-config/prettier.config",
"devDependencies": {
"@bfra.me/eslint-config": "workspace:*",
"@bfra.me/prettier-config": "workspace:*",
"@bfra.me/tsconfig": "workspace:*",
"@changesets/cli": "2.27.12",
"@eslint/config-inspector": "1.0.0",
"@manypkg/cli": "0.23.0",
"@microsoft/api-extractor": "7.50.0",
"@svitejs/changesets-changelog-github-compact": "1.2.0",
"@types/fs-extra": "11.0.4",
"@types/node": "22.12.0",
"@vitest/coverage-v8": "3.0.5",
"eslint": "9.20.1",
"execa": "9.5.2",
"fast-glob": "3.3.3",
"fs-extra": "11.3.0",
"prettier": "3.5.0",
"publint": "0.3.4",
"rimraf": "6.0.1",
"ts-essentials": "10.0.4",
"type-fest": "4.34.1",
"typescript": "5.7.3",
"vitest": "3.0.5"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"read-pkg-up@^11": "npm:read-package-up"
}
}
}