iconsulting/packages/shared/package.json

36 lines
850 B
JSON

{
"name": "@iconsulting/shared",
"version": "1.0.0",
"description": "Shared types, utilities and constants for iConsulting",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js"
},
"./constants": {
"types": "./dist/constants/index.d.ts",
"import": "./dist/constants/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts"
},
"devDependencies": {
"typescript": "^5.3.0"
}
}