-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "@changesets/format",
"version": "0.1.0",
"description": "Detect and format files",
"bugs": {
"url": "https://github.com/changesets/format/issues"
},
"license": "MIT",
"author": "Changesets",
"repository": {
"type": "git",
"url": "git+https://github.com/changesets/format.git"
},
"files": [
"dist"
],
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test": "vitest",
"format": "oxfmt",
"lint": "oxfmt --check",
"typecheck": "tsc",
"release": "changeset publish"
},
"dependencies": {
"package-manager-detector": "^1.6.0"
},
"devDependencies": {
"@changesets/changelog-github": "^1.0.0-next.3",
"@changesets/cli": "^3.0.0-next.3",
"@types/node": "^25.6.2",
"fs-fixture": "^2.13.0",
"oxfmt": "^0.48.0",
"tsdown": "^0.22.0",
"typescript": "~6.0.3",
"vitest": "^4.1.5"
},
"engines": {
"node": "^22.11 || ^24 || >=26"
},
"packageManager": "pnpm@11.1.0"
}