utils/package.json

47 lines
1.2 KiB
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-09-30 21:43:13 -04:00
"version": "0.17.0",
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-09-22 03:09:52 -04:00
"docs": "typedoc --plugin typedoc-plugin-markdown --cleanOutputDir false --outputFileStrategy modules --hidePageHeader --out ./docs --entryPoints src/**/*.ts --readme none --entryFileName Home",
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",
"typedoc-plugin-markdown": "^4.2.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-09-30 21:43:13 -04:00
],
"dependencies": {
"var-persist": "^1.0.1"
}
2024-02-07 01:33:07 -05:00
}