fix: frontend bug where the passwords won't be checked when the password is changed
26 lines
643 B
JSON
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"
|
|
}
|
|
}
|