-
-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathpackage.json
49 lines (49 loc) · 1.88 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
{
"private": true,
"name": "@fast-check/monorepo",
"description": "Test making sure fast-check expose the right typings",
"type": "module",
"packageManager": "[email protected]+sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971",
"workspaces": [
".github/actions/*",
"examples",
"packages/*",
"website"
],
"scripts": {
"contributor:add": "all-contributors add",
"build:all": "pnpm --filter {./packages/**} run build",
"build-ci:all": "pnpm --filter {./packages/**} run build-ci",
"test": "vitest --coverage=false",
"test:coverage": "vitest",
"typecheck:all": "pnpm --parallel run typecheck",
"format": "prettier --cache --write .",
"format:check": "prettier --list-different .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"publint:all": "pnpm --filter {./packages/**} --parallel exec publint --strict",
"bump": "changeset",
"changelog": "changeset status",
"pack:all": "pnpm --filter {./packages/**} --parallel exec pnpm pack --out package.tgz",
"unpack:all": "pnpm --filter {./packages/**} --parallel exec tar -xf package.tgz --strip-components=1 --exclude='package/package.json'",
"update:documentation": "cross-env UPDATE_CODE_SNIPPETS=true pnpm run test --project fast-check:e2e test/e2e/documentation"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@eslint/js": "^9.24.0",
"@fast-check/packaged": "*",
"@typescript-eslint/utils": "^8.29.1",
"@vitest/coverage-v8": "^3.0.9",
"all-contributors-cli": "^6.26.1",
"cross-env": "^7.0.3",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"pkg-pr-new": "^0.0.42",
"prettier": "3.5.3",
"publint": "^0.3.11",
"typescript": "~5.8.3",
"typescript-eslint": "^8.29.1",
"vitest": "^3.0.9"
}
}