1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-02-08 21:59:39 +01:00
.profile/packages/utils/package.json

29 lines
775 B
JSON
Raw Permalink Normal View History

{
"name": "@repo/utils",
2025-02-08 20:00:47 +01:00
"version": "0.0.0-develop",
"private": true,
"type": "module",
"exports": {
"./constants": "./src/constants.ts",
"./dates": "./src/dates.ts",
2025-02-08 20:00:47 +01:00
"./objects": "./src/objects.ts",
"./strings": "./src/strings.ts",
"./types": "./src/types.ts",
"./urls": "./src/urls.ts"
},
"scripts": {
"lint:eslint": "eslint src --max-warnings 0",
"lint:typescript": "tsc --noEmit",
2025-02-08 20:00:47 +01:00
"test": "node --experimental-strip-types --test"
},
"devDependencies": {
2025-02-08 20:00:47 +01:00
"@repo/config-eslint": "workspace:*",
"@repo/config-typescript": "workspace:*",
"@types/node": "catalog:",
"@total-typescript/ts-reset": "catalog:",
"eslint": "catalog:",
"typescript-eslint": "catalog:",
2025-02-08 20:00:47 +01:00
"typescript": "catalog:"
}
}