77 lines
2.3 KiB
JSON
77 lines
2.3 KiB
JSON
{
|
|
"name": "@flare/tuitio-react-client",
|
|
"version": "1.0.0",
|
|
"description": "Tuitio react client",
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"types": "./dist/esm/index.d.ts",
|
|
"scripts": {
|
|
"build": "npm run build:esm && npm run build:cjs",
|
|
"build:esm": "tsc",
|
|
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
|
|
"test": "jest --config jestconfig.json",
|
|
"format": "prettier --write \"{src,tests}/**/*.{js,ts,jsx,tsx}\"",
|
|
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
|
|
"prepublishOnly": "npm test && npm run lint",
|
|
"prepush": "npm run build",
|
|
"preversion": "npm run lint",
|
|
"version": "npm run format",
|
|
"push": "npm publish",
|
|
"push:major": "npm run version:major && npm run push",
|
|
"push:minor": "npm run version:minor && npm run push",
|
|
"push:patch": "npm run version:patch && npm run push",
|
|
"version:major": "npm version major --no-git-tag-version",
|
|
"version:minor": "npm version minor --no-git-tag-version",
|
|
"version:patch": "npm version patch --no-git-tag-version"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-react-client.git"
|
|
},
|
|
"keywords": [
|
|
"flare",
|
|
"tuitio-react-client"
|
|
],
|
|
"author": {
|
|
"name": "Tudor Stanciu",
|
|
"email": "tudor.stanciu94@gmail.com",
|
|
"url": "https://lab.code-rove.com/tsp"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-react-client/issues"
|
|
},
|
|
"homepage": "https://lab.code-rove.com/gitea/bricks/tuitio-react-client#readme",
|
|
"files": [
|
|
"dist",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"dependencies": {
|
|
"@flare/tuitio-client": "^1.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^12.1.5",
|
|
"@types/jest": "^29.4.0",
|
|
"@types/react": "^18.0.27",
|
|
"@typescript-eslint/eslint-plugin": "^5.51.0",
|
|
"@typescript-eslint/parser": "^5.51.0",
|
|
"eslint": "^8.34.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"jest": "^29.4.2",
|
|
"jest-canvas-mock": "^2.4.0",
|
|
"jest-environment-jsdom": "^29.4.2",
|
|
"prettier": "^2.8.4",
|
|
"react": "^16.14.0",
|
|
"react-dom": "16.14.0",
|
|
"ts-jest": "^29.0.5",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|