Files
welshman/packages/lib/package.json
T
2025-01-24 12:41:25 +01:00

33 lines
701 B
JSON

{
"name": "@welshman/lib",
"version": "0.0.38",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of utilities.",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"build"
],
"types": "./build/src/index.d.ts",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"import": "./build/src/index.js",
"require": "./build/src/index.js"
}
},
"scripts": {
"pub": "npm run lint && npm run build && npm publish",
"build": "gts clean && tsc",
"lint": "gts lint",
"fix": "gts fix"
},
"dependencies": {
"@scure/base": "^1.1.6",
"@types/events": "^3.0.3",
"events": "^3.3.0"
}
}