20 lines
340 B
JSON
20 lines
340 B
JSON
{
|
|
"name": "rand",
|
|
"version": "1.0.0",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"bin": {
|
|
"rand": "./index.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "bun build ./index.ts --compile --outfile dist/rand"
|
|
},
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|