utils/package.json

43 lines
1016 B
JSON
Raw Permalink Normal View History

2024-02-07 01:33:07 -05:00
{
2024-04-11 23:19:36 -04:00
"name": "@ztimson/utils",
2024-10-15 16:44:23 -04:00
"version": "0.20.7",
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-08-09 12:27:44 -04:00
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
2024-04-11 23:19:36 -04:00
"types": "./dist/index.d.ts",
2024-06-16 08:29:49 -04:00
"exports": {
".": {
2024-08-09 12:27:44 -04:00
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
2024-06-16 08:29:49 -04:00
}
},
2024-02-07 01:33:07 -05:00
"scripts": {
2024-07-19 00:06:17 -04:00
"build": "npx tsc && npx vite build",
2024-10-01 15:08:52 -04:00
"docs": "typedoc --cleanOutputDir false --out ./docs --entryPoints src/**/*.ts --readme none",
2024-07-19 00:06:17 -04: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-09-22 02:38:13 -04:00
"typedoc": "^0.26.7",
2024-02-07 01:33:07 -05:00
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2"
},
"files": [
"dist"
2024-10-14 18:51:24 -04:00
]
2024-02-07 01:33:07 -05:00
}