utils/package.json

34 lines
756 B
JSON
Raw Normal View History

2024-02-07 01:33:07 -05:00
{
2024-04-11 23:19:36 -04:00
"name": "@ztimson/utils",
2024-05-31 13:42:28 -04:00
"version": "0.10.4",
2024-04-11 23:19:36 -04:00
"description": "Utility library",
2024-02-07 01:33:07 -05:00
"author": "Zak Timson",
"license": "MIT",
2024-02-07 23:14:37 -05:00
"private": false,
2024-02-07 01:33:07 -05:00
"repository": {
"type": "git",
2024-02-07 01:34:44 -05:00
"url": "https://git.zakscode.com/ztimson/js-utilities"
2024-02-07 01:33:07 -05:00
},
2024-04-11 23:19:36 -04:00
"main": "./dist/utils.cjs",
"module": "./dist/utils.mjs",
"types": "./dist/index.d.ts",
2024-02-07 01:33:07 -05:00
"scripts": {
2024-04-11 23:19:36 -04:00
"build": "npx tsc && npx vite build",
2024-02-07 02:31:16 -05:00
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"watch": "npx vite build --watch"
2024-02-07 01:33:07 -05:00
},
"devDependencies": {
2024-02-07 02:31:16 -05:00
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.2",
2024-02-07 01:33:07 -05:00
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2"
},
"files": [
"dist"
]
}