-
-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.9 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.9 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
{
"private": true,
"name": "@fast-check/monorepo",
"description": "Test making sure fast-check expose the right typings",
"type": "module",
"packageManager": "pnpm@10.33.0",
"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",
"test:coverage": "vitest --coverage",
"typecheck:all": "pnpm --parallel run typecheck",
"format": "prettier --experimental-cli --cache --write .",
"format:check": "prettier --experimental-cli --cache --list-different .",
"lint": "eslint --concurrency=auto . --fix",
"lint:check": "eslint --concurrency=auto .",
"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 test/e2e/documentation"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@fast-check/packaged": "workspace:*",
"@typescript-eslint/utils": "^8.57.2",
"@vitest/coverage-v8": "^4.0.18",
"all-contributors-cli": "^6.26.1",
"cross-env": "^10.1.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"pkg-pr-new": "^0.0.66",
"prettier": "3.8.1",
"publint": "^0.3.18",
"rolldown": "^1.0.0-rc.12",
"rolldown-plugin-dts": "^0.23.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.0"
}
}