-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.71 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "bundle-stats-plugin",
"version": "0.0.0",
"description": "Codecov Bundler Plugins Monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r --filter='./packages/*' run build",
"dev": "pnpm -r --parallel --filter='./packages/*' run dev",
"clean": "pnpm -r --filter='./packages/*' clean && rm -rf node_modules",
"type-check": "pnpm -r --filter='./packages/*' --filter='./integration-tests' run type-check",
"lint": "pnpm -r --filter='./packages/*' lint",
"lint:fix": "pnpm -r --filter='./packages/*' lint:fix",
"format": "pnpm -r format && prettier --write '*.{cjs,json}' --ignore-unknown --no-error-on-unmatched-pattern",
"format:check": "pnpm -r --filter='./packages/*' format:check && prettier --check '*.{cjs,json}' --ignore-unknown --no-error-on-unmatched-pattern",
"test:unit": "pnpm -r --filter='./packages/*' run test:unit",
"test:unit:watch": "pnpm -r --filter='./packages/*' run test:unit:watch",
"test:unit:update": "pnpm -r --filter='./packages/*' run test:unit:update",
"test:unit:ci": "pnpm -r --filter='./packages/*' run test:unit:ci",
"test:e2e": "pnpm -r --filter='./integration-tests' run test:e2e",
"test:e2e:update": "pnpm -r --filter='./integration-tests' run test:e2e:update",
"prepare": "husky install",
"changeset:add": "pnpm changeset",
"changeset:consume": "pnpm changeset version",
"changeset:publish": "pnpm run build && pnpm changeset publish",
"generate:typedoc": "typedoc --options ./typedoc.json",
"generate:typedoc:packages": "pnpm -r --filter='./packages/*' run generate:typedoc"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/eslint": "^8.56.2",
"@types/node": "^20.19.43",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-isaacscript": "^3.12.2",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^16.4.0",
"prettier": "^3.2.4",
"typedoc": "^0.27.5",
"typescript": "^5.7.3",
"vite": "6.4.3",
"vitest": "^3.2.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md,json}": [
"prettier --write"
]
},
"volta": {
"node": "20.9.0"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"overrides": {
"brace-expansion@<1.1.17": "1.1.17",
"brace-expansion@>=2.0.0 <2.1.3": "2.1.4",
"brace-expansion@>=3.0.0 <5.0.8": "5.0.9",
"braces@<3.0.3": "3.0.3",
"cross-spawn@<6.0.6": "6.0.6",
"defu@<=6.1.4": "6.1.7",
"devalue@<5.6.2": "5.9.0",
"flatted@<=3.4.1": "3.4.2",
"glob@>=10.2.0 <10.5.0": "10.5.0",
"h3@<1.15.6": "1.15.11",
"js-yaml@>=3.0.0 <3.15.0": "3.15.0",
"js-yaml@>=4.0.0 <4.3.0": "4.3.1",
"linkify-it@<=5.0.1": "5.0.2",
"lodash@>=4.0.0 <=4.17.23": "4.18.1",
"minimatch@<3.1.4": "3.1.4",
"minimatch@>=5.0.0 <5.1.8": "5.1.9",
"minimatch@>=9.0.0 <9.0.7": "9.0.9",
"node-forge@<1.4.0": "1.4.0",
"path-to-regexp@<3.3.0": "3.3.0",
"postcss@<8.5.18": "8.5.25",
"rollup@>=3.0.0 <3.30.0": "3.30.0",
"rollup@>=4.0.0 <4.59.0": "4.60.1",
"serialize-javascript@<7.0.3": "7.0.7",
"seroval@<1.5.3": "1.6.0",
"sharp@<0.35.0": "0.35.3",
"shell-quote@<1.9.0": "1.10.0",
"solid-js@<1.9.4": "1.9.9",
"tar@<7.5.19": "7.5.22",
"tmp@<0.2.7": "0.2.7",
"turbo-stream@<3.0.0": "3.0.0",
"undici@<6.27.0": "6.28.0",
"vite@<6.4.3": "6.4.3",
"ws@>=7.0.0 <7.5.11": "7.5.13",
"ws@>=8.0.0 <8.21.0": "8.21.1"
}
}
}