@impler/shared
Version:
Reusable types and classes to shared between apps and libraries
42 lines (41 loc) • 1.36 kB
JSON
{
"name": "@impler/shared",
"version": "0.24.1",
"description": "Reusable types and classes to shared between apps and libraries",
"license": "MIT",
"author": "implerhq",
"repository": "https://github.com/implerhq/impler.io",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"keywords": ["impler", "implerhq", "data-import", "excel-import", "csv-import"],
"files": ["dist", "package.json"],
"scripts": {
"start": "npm run start:dev",
"prebuild": "rimraf dist",
"build": "cross-env node_modules/.bin/tsc -p tsconfig.build.json",
"build:watch": "cross-env node_modules/.bin/tsc -p tsconfig.build.json -w --preserveWatchOutput",
"start:dev": "pnpm build:watch",
"precommit": "lint-staged",
"lint": "eslint src",
"lint:fix": "pnpm lint -- --fix"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@types/uuid": "^9.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.8.3"
},
"dependencies": {
"uuid": "^9.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["prettier --ignore-path .eslintignore --write"],
"{*.json,.{babelrc,eslintrc,prettierrc,stylelintrc}}": [
"prettier --ignore-path .eslintignore --parser json --write"
],
"*.{html,md,yml}": ["prettier --ignore-path .eslintignore --single-quote --write"]
}
}