Files
welshman/packages/lib/package.json
T
2024-05-10 08:19:48 -07:00

41 lines
873 B
JSON

{
"name": "@welshman/lib",
"version": "0.0.3",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of utilities.",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"build"
],
"types": "./build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.mjs",
"require": "./build/index.cjs"
}
},
"scripts": {
"pub": "npm run lint && npm run build && npm publish",
"build": "gts clean && tsc-multi",
"lint": "gts lint",
"fix": "gts fix"
},
"devDependencies": {
"gts": "^5.0.1",
"tsc-multi": "^1.1.0",
"typescript": "~5.1.6"
},
"dependencies": {
"@types/events": "^3.0.3",
"@types/throttle-debounce": "^5.0.2",
"@scure/base": "^1.1.6",
"events": "^3.3.0",
"throttle-debounce": "^5.0.0"
}
}