-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 802 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 802 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
{
"name": "mb-cli",
"version": "0.1.0",
"type": "module",
"bin": {
"mb": "src/mb.ts"
},
"scripts": {
"mb": "bun src/mb.ts",
"test": "bun test --pass-with-no-tests",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"build": "bun build src/mb.ts --outfile dist/mb.js --target=bun",
"build:no-dms": "bun build src/mb.ts --outfile dist/mb.js --define:MB_NO_DMS=true --target=bun"
},
"dependencies": {
"commander": "^12.1.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"bun-types": "^1.3.8",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}