UNPKG

fitsum-lib-one

Version:
58 lines (57 loc) 1.62 kB
{ "name": "fitsum-lib-one", "version": "1.0.0", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "license": "MIT", "author": "Fitsum", "devDependencies": { "@testing-library/react": "^13.4.0", "@types/jest": "^29.2.4", "@types/react": "^18.0.26", "@typescript-eslint/eslint-plugin": "^5.45.1", "@typescript-eslint/parser": "^5.45.1", "eslint": "^8.29.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.31.11", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^29.3.1", "jest-canvas-mock": "^2.4.0", "jest-environment-jsdom": "^29.3.1", "prettier": "^2.8.0", "react": "^18.2.0", "react-dom": "^18.2.0", "ts-jest": "^29.0.3", "typescript": "^4.9.3" }, "repository": { "type": "git", "url": "git+https://github.com/fitsum-dev/my-react-typescript-package.git" }, "peerDependencies": { "react": ">=16" }, "files": [ "dist", "LICENSE", "README.md" ], "keywords": [ "react", "typescript", "awesome-components" ], "scripts": { "build": "yarn build:esm && yarn build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module commonjs --outDir dist/cjs", "prepare": "npm run build", "prepublishOnly": "npm test && npm run prettier && npm run lint", "start": "tsc && node index.js", "test": "jest --config jestconfig.json", "lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"", "prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"" } }