all repos — cmd @ 46c9141b19d060ead1c0be82a1cc815aa92f2987

Unnamed repository; edit this file 'description' to name the repository.

package.json (view raw)

 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
{
	"name": "arg-parser",
	"files": [
		"dist"
	],
	"type": "module",
	"module": "src/index.ts",
	"exports": {
		".": "./dist/index.js"
	},
	"scripts": {
		"build:types": "tsc --emitDeclarationOnly",
		"build:js": "bun build ./src/index.ts --outdir ./dist --minify --target bun",
		"build": "bun run build:types && bun run build:js",
		"prepublishOnly": "bun run build",
		"fmt": "bunx oxfmt fmt src tests",
		"lint": "bunx oxlint lint src tests"
	},
	"devDependencies": {
		"@types/bun": "latest",
		"oxfmt": "^0.49.0",
		"oxlint": "^1.64.0"
	},
	"peerDependencies": {
		"typescript": "^5"
	},
	"packageManager": "bun@1.1.13^"
}