Files
stockhome/shared/package.json
T
theis.gaedigk 6be34c93aa refactor: edit tailwindcss classes and change code formatting, therefore added .prettierrc file
fix: frontend bug where the passwords won't be checked when the password is changed
2026-07-08 14:56:43 +02:00

26 lines
643 B
JSON

{
"name": "@stockhome/shared",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"prebuild": "barrelsby --directory src --delete --single",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "npm run prebuild && npm run build:esm && npm run build:cjs",
"lint": "eslint ."
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "./dist/types/index.d.ts",
"devDependencies": {
"barrelsby": "^2.8.1",
"typescript": "~6.0.2"
}
}