35 lines
720 B
JSON
35 lines
720 B
JSON
{
|
|
"name": "@welshman/lib",
|
|
"version": "0.4.0",
|
|
"author": "hodlbod",
|
|
"license": "MIT",
|
|
"description": "A collection of utilities.",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "pnpm run clean && pnpm run compile --force",
|
|
"clean": "rimraf ./dist",
|
|
"compile": "tsc -b tsconfig.build.json",
|
|
"prepublishOnly": "pnpm run build"
|
|
},
|
|
"dependencies": {
|
|
"@scure/base": "^1.1.6",
|
|
"@types/events": "^3.0.3",
|
|
"events": "^3.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "~6.0.0",
|
|
"typescript": "~5.8.0"
|
|
}
|
|
}
|