-
-
Notifications
You must be signed in to change notification settings - Fork 832
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) 路 2.95 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) 路 2.95 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
{
"name": "@changesets/repository",
"version": "1.0.0",
"private": true,
"description": "A tool to manage versioning and changelogs with a focus on monorepos",
"homepage": "https://changesets.dev",
"license": "MIT",
"author": "Changesets Contributors",
"contributors": [
"Ben Conolly",
"Mitchell Hamilton",
"Mateusz Burzy艅ski <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/changesets/changesets.git"
},
"type": "module",
"scripts": {
"postinstall": "manypkg check",
"bootstrap": "pnpm install --filter=!@changesets/e2e",
"bootstrap:e2e": "pnpm install --filter=@changesets/e2e...",
"build": "tsdown",
"watch": "tsdown --watch",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"generate-json-schema": "node packages/config/scripts/generate-json-schema.ts",
"lint": "eslint",
"test": "vitest",
"test:fast": "vitest --tags-filter=!slow",
"test:e2e": "pnpm --filter=@changesets/e2e test",
"types:check": "tsc",
"check-all": "pnpm build && pnpm test run && pnpm types:check && pnpm lint && pnpm format",
"site:dev": "pnpm --filter=./site dev",
"site:build": "pnpm --filter=./site build",
"site:preview": "pnpm --filter=./site preview",
"version-packages": "changeset version && pnpm format:fix",
"lint-staged:setup": "pnpm run --sequential \"/lint-staged:setup:\\d/\"",
"lint-staged:setup:1": "git config set hook.\"lint-staged\".event pre-commit",
"lint-staged:setup:2": "git config set hook.\"lint-staged\".command \"node node_modules/lint-staged/bin/lint-staged.js\""
},
"devDependencies": {
"@changesets/changelog-github": "workspace:*",
"@changesets/cli": "workspace:*",
"@e18e/eslint-plugin": "^0.8.0",
"@eslint/js": "10.0.1",
"@manypkg/cli": "^0.25.1",
"@oxc-node/core": "^0.1.0",
"@tsconfig/node22": "^22.0.6",
"@tsconfig/node24": "^24.0.5",
"@types/node": "^26.4.1",
"@types/semver": "^7.8.0",
"@vitest/coverage-v8": "^5.0.0",
"@vitest/eslint-plugin": "^1.6.27",
"eslint": "^10.10.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-lite": "~0.6.0",
"eslint-plugin-n": "^18.3.0",
"lint-staged": "^17.5.0",
"oxfmt": "^0.66.0",
"pkg-pr-new": "^0.0.88",
"publint": "^0.3.24",
"tsdown": "^0.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.69.0",
"vitest": "^5.0.0"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,json,json5,yaml,yml,css,scss,md}": [
"oxfmt --write --no-error-on-unmatched-pattern"
]
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^22.12 || ^24 || >=26",
"onFail": "error"
}
},
"engines": {
"node": "^22.11 || ^24 || >=26"
},
"packageManager": "pnpm@11.13.1+sha512.b2fc7683b8a6525414e7d13e1ba28caaddde96bf66ec540bfaeb7e702b81f3e0be4d1f295edf7f9fe0396740a8dce4509c582ddf79891f4543fea32d37645f25"
}