forked from Lilly-Protocol/lily-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 986 Bytes
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
{
"name": "@changesets/format",
"version": "0.1.2",
"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",
"dependencies": {
"package-manager-detector": "^1.8.0",
"tinyexec": "^1.3.0"
},
"devDependencies": {
"@changesets/changelog-github": "^1.0.0",
"@changesets/cli": "^3.0.0",
"@types/node": "^26.1.2",
"fs-fixture": "^2.14.0",
"oxfmt": "^0.62.0",
"tsdown": "^0.22.14",
"typescript": "~7.0.2",
"vitest": "^4.1.10"
},
"engines": {
"node": "^22.11 || ^24 || >=26"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test": "vitest",
"format": "oxfmt",
"lint": "oxfmt --check",
"typecheck": "tsc"
}
}