43 lines
1016 B
JSON
43 lines
1016 B
JSON
{
|
|
"name": "@ztimson/utils",
|
|
"version": "0.23.1",
|
|
"description": "Utility library",
|
|
"author": "Zak Timson",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.zakscode.com/ztimson/js-utilities"
|
|
},
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "npx tsc && npx vite build",
|
|
"docs": "typedoc --cleanOutputDir false --out ./docs --entryPoints src/**/*.ts --readme none",
|
|
"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",
|
|
"typedoc": "^0.26.7",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.12",
|
|
"vite-plugin-dts": "^3.7.2"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|