-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 951 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 951 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
{
"name": "@lazy-release/changesets",
"version": "0.7.0",
"description": "",
"license": "ISC",
"author": "",
"bin": {
"changeset": "./dist/index.js"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"scripts": {
"changeset": "bun src/index.ts",
"build": "bun build ./src/index.ts --outdir ./dist --target node",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint --type-aware --type-check",
"lint:fix": "oxlint --fix"
},
"dependencies": {
"@clack/prompts": "^0.10.1",
"commander": "^14.0.2",
"human-id": "^4.1.1",
"package-manager-detector": "^1.6.0",
"picocolors": "^1.1.1",
"tinyglobby": "^0.2.13"
},
"devDependencies": {
"@types/bun": "^1.3.6",
"@types/node": "^22.15.15",
"oxfmt": "^0.26.0",
"oxlint": "^1.41.0",
"oxlint-tsgolint": "^0.11.1",
"typescript": "^5.8.3"
},
"packageManager": "bun@1.3.6"
}