|
| 1 | +{ |
| 2 | + "name": "react-hook-supabase", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "React Hooks library for Supabase", |
| 5 | + "main": "./dist/index.cjs.js", |
| 6 | + "module": "./dist/index.es.js", |
| 7 | + "types": "./dist/types/index.d.ts", |
| 8 | + "files": [ |
| 9 | + "dist" |
| 10 | + ], |
| 11 | + "repository": "tmm/react-hook-supabase", |
| 12 | + "license": "MIT", |
| 13 | + "scripts": { |
| 14 | + "build": "vite build && tsc --emitDeclarationOnly", |
| 15 | + "build:watch": "vite build --watch", |
| 16 | + "clean": "rimraf dist", |
| 17 | + "dev": "vite", |
| 18 | + "gen": "npx openapi-typescript $VITE_SUPABASE_URL/rest/v1/?apikey=$VITE_SUPABASE_KEY --output playground/types/supabase.ts", |
| 19 | + "lint": "eslint . --cache", |
| 20 | + "lint:fix": "yarn lint --fix", |
| 21 | + "lint:format": "prettier --write .", |
| 22 | + "lint:types": "tsc --noEmit", |
| 23 | + "predev": "yarn gen", |
| 24 | + "prepare": "husky install .config/husky" |
| 25 | + }, |
| 26 | + "peerDependencies": { |
| 27 | + "@supabase/supabase-js": "^1.11.6", |
| 28 | + "react": "^16.11.0 || ^17.0.0" |
| 29 | + }, |
| 30 | + "devDependencies": { |
| 31 | + "@commitlint/config-conventional": "^12.1.1", |
| 32 | + "@supabase/postgrest-js": "^0.28.1", |
| 33 | + "@supabase/supabase-js": "^1.11.6", |
| 34 | + "@testing-library/react-hooks": "^5.1.1", |
| 35 | + "@types/node": "^14.14.41", |
| 36 | + "@types/react": "^17.0.3", |
| 37 | + "@typescript-eslint/eslint-plugin": "^4.22.0", |
| 38 | + "@typescript-eslint/parser": "^4.22.0", |
| 39 | + "eslint": "^7.24.0", |
| 40 | + "eslint-config-prettier": "^8.2.0", |
| 41 | + "eslint-import-resolver-typescript": "^2.4.0", |
| 42 | + "eslint-plugin-import": "^2.22.1", |
| 43 | + "eslint-plugin-jest-dom": "^3.8.0", |
| 44 | + "eslint-plugin-prettier": "^3.4.0", |
| 45 | + "eslint-plugin-react": "^7.23.2", |
| 46 | + "eslint-plugin-react-hooks": "^4.2.0", |
| 47 | + "eslint-plugin-testing-library": "^4.1.0", |
| 48 | + "husky": "^6.0.0", |
| 49 | + "prettier": "^2.2.1", |
| 50 | + "react": "^17.0.2", |
| 51 | + "react-dom": "^17.0.2", |
| 52 | + "react-hook-supabase": "file:./", |
| 53 | + "rimraf": "^3.0.2", |
| 54 | + "typescript": "^4.2.4", |
| 55 | + "vite": "^2.2.1" |
| 56 | + } |
| 57 | +} |
0 commit comments