@ehubbell/adapters
Version:
A collection of networking adapters for various projects.
67 lines (66 loc) • 1.81 kB
JSON
{
"name": "@ehubbell/adapters",
"version": "0.0.19",
"description": "A collection of networking adapters for various projects.",
"author": "Eric Hubbell<eric@erichubbell.com>",
"license": "ISC",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/playbooks-xyz/playbooks-framework.git"
},
"files": [
"dist"
],
"keywords": [
"playbooks",
"adapters",
"networking",
"http",
"https"
],
"scripts": {
"dev": "vite build --mode development --watch --minify false",
"start": "vite build --mode development --minify false",
"build": "vite build --mode production --minify true && npm run build:ts",
"build:ts": "dts-bundle-generator --config dts.config.ts",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier src",
"format:fix": "prettier --write src",
"clean": "npm run lint:fix && npm run format:fix",
"commit": "scripts/commit.sh",
"deploy": "scripts/deploy.sh",
"git": "git push --tags",
"test": "jest",
"prepare": "husky"
},
"peerDependencies": {
"@ehubbell/utils": "^0"
},
"dependencies": {
"cross-fetch": "^4.1.0",
"dayjs": "^1.11.13"
},
"devDependencies": {
"@ehubbell/configs": "^0.0.17",
"@ehubbell/utils": "^0.0.24",
"@types/jest": "^29.5.1",
"@types/react": "^19.1.7",
"@types/react-dom": "^19.1.6",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^29.5.0",
"prettier": "^3.5.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^4.5.0"
}
}