2019-03-23 17:16:41 +00:00
|
|
|
{
|
|
|
|
"name": "uhrwerk",
|
2024-03-04 10:25:17 +00:00
|
|
|
"version": "1.1.1",
|
2019-03-23 17:16:41 +00:00
|
|
|
"description": "time utility",
|
2024-07-29 13:12:11 +00:00
|
|
|
"keywords": [
|
|
|
|
"time",
|
|
|
|
"interval",
|
|
|
|
"human-readable",
|
|
|
|
"utility"
|
|
|
|
],
|
2022-07-16 15:29:22 +00:00
|
|
|
"license": "MIT",
|
2024-07-29 13:12:11 +00:00
|
|
|
"author": "Niccolo Borgioli",
|
2022-07-16 15:29:22 +00:00
|
|
|
"type": "module",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"require": "./dist/index.cjs",
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
"types": "./dist/index.d.ts"
|
|
|
|
}
|
2019-03-23 17:16:41 +00:00
|
|
|
},
|
2024-07-29 13:12:11 +00:00
|
|
|
"main": "./dist/index.cjs",
|
|
|
|
"types": "./dist/index.d.ts",
|
2022-07-16 15:29:22 +00:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2024-07-29 13:12:11 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap",
|
|
|
|
"prepublishOnly": "pnpm run test",
|
|
|
|
"test": "pnpm run build && mocha"
|
|
|
|
},
|
2019-03-23 17:16:41 +00:00
|
|
|
"devDependencies": {
|
2024-07-29 13:12:11 +00:00
|
|
|
"@tsconfig/strictest": "^2.0.5",
|
|
|
|
"mocha": "^10.7.0",
|
|
|
|
"tsup": "^8.2.3",
|
|
|
|
"typescript": "^5.5.4"
|
|
|
|
},
|
|
|
|
"packageManager": "pnpm@9.6.0"
|
2022-07-16 15:29:22 +00:00
|
|
|
}
|