tsuite
Version:
A collection of useful utility functions, All fully typed and documented
58 lines • 1.46 kB
JSON
{
"name": "tsuite",
"version": "0.7.2",
"description": "A collection of useful utility functions, All fully typed and documented",
"keywords": [
"typescript",
"utility",
"functions",
"dom",
"elements",
"state",
"request",
"fetch",
"toast",
"image",
"fallback"
],
"homepage": "https://tijnjh.github.io/tsuite",
"repository": "tijnjh/tsuite",
"license": "MIT",
"author": "tijnjh",
"type": "module",
"exports": {
".": "./dist/index.js",
"./create-node": "./dist/create-node.js",
"./create-request": "./dist/create-request.js",
"./create-state": "./dist/create-state.js",
"./effetch": "./dist/effetch.js",
"./hug-text": "./dist/hug-text.js",
"./load-image-with-fallback": "./dist/load-image-with-fallback.js",
"./map-elements-by-id": "./dist/map-elements-by-id.js",
"./type-helpers": "./dist/type-helpers.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"typecatch": "^0.2.3"
},
"devDependencies": {
"@types/node": "^22.15.31",
"csstype": "^3.1.3",
"tsdown": "^0.12.7",
"tslib": "^2.8.1",
"typedoc": "^0.28.5",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsdown --clean",
"build:docs": "typedoc",
"dev": "tsdown --watch",
"fmt": "bun x prettier --write ."
}
}