utils/package.json
ztimson 07606cd996
All checks were successful
Build / Build NPM Project (push) Successful in 1m14s
Build / Tag Version (push) Successful in 16s
Build / Publish (push) Successful in 23s
Removed custom errors from xhr helper
2024-05-31 12:37:01 -04:00

34 lines
756 B
JSON

{
"name": "@ztimson/utils",
"version": "0.10.3",
"description": "Utility library",
"author": "Zak Timson",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://git.zakscode.com/ztimson/js-utilities"
},
"main": "./dist/utils.cjs",
"module": "./dist/utils.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npx tsc && npx vite build",
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"watch": "npx vite build --watch"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2"
},
"files": [
"dist"
]
}