forked from hipstersmoothie/window-splitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.39 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
{
"name": "monorepo",
"packageManager": "pnpm@9.7.1",
"type": "module",
"repository": "https://github.com/hipstersmoothie/window-splitter",
"author": {
"name": "Andrew Lisowski",
"email": "lisowski54@gmail.com"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "turbo run clean",
"lint": "turbo run lint lint-root --continue",
"lint-root": "eslint .",
"test": "turbo run test --continue --concurrency=1",
"merge-codecov": "mkdir -p coverage && pnpm run merge-coverage && pnpm run merge-summary",
"merge-coverage": "rsync -a --prune-empty-dirs --include '*/' --include 'coverage-final.json' --exclude '*' packages coverage/reports && flatten-directory --rootdir='coverage/reports' --outputdir='coverage/reports-combined' && nyc merge coverage/reports-combined coverage/combined/all.json",
"merge-summary": "rsync -a --prune-empty-dirs --include '*/' --include 'coverage-summary.json' --exclude '*' packages coverage/summary && flatten-directory --rootdir='coverage/summary' --outputdir='coverage/summary-combined' && node scripts/combine-summaries.js",
"format": "prettier --write .",
"release": "pnpm run build && auto shipit"
},
"devDependencies": {
"@auto-it/all-contributors": "^11.2.0",
"@auto-it/first-time-contributor": "^11.2.0",
"@auto-it/released": "^11.2.0",
"@internal/eslint-config": "workspace:*",
"@types/find-package-json": "^1.2.6",
"all-contributors-cli": "^6.26.1",
"auto": "^11.2.0",
"eslint": "catalog:",
"fast-glob": "^3.3.2",
"find-package-json": "^1.2.0",
"flatten-directory": "^1.0.8",
"globals": "^15.9.0",
"lerna": "^8.1.8",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"turbo": "^2.0.14",
"typescript": "catalog:"
},
"auto": {
"plugins": [
"released",
"npm",
[
"all-contributors",
{
"types": {
"code": [
"**/src/**/*",
"**/package.json",
"**/tsconfig.json"
],
"doc": [
"**/*.md",
"**/packages/docs/**"
],
"test": [
"**/*.test.ts",
"**/*.test.tsx"
]
}
}
]
]
},
"pnpm": {
"patchedDependencies": {
"mdxts@1.6.2": "patches/mdxts@1.6.2.patch"
}
}
}