|
1 | 1 | {
|
2 | 2 | "name": "@gigmade/react-hooks",
|
3 |
| - "version": "0.1.8", |
| 3 | + "version": "0.2.0", |
4 | 4 | "description": "Collection of useful hooks",
|
5 |
| - "main": "dist/index.js", |
6 |
| - "module": "dist/index.js", |
| 5 | + "main": "dist/cjs/index.js", |
| 6 | + "module": "dist/esm/index.js", |
| 7 | + "types": "dist/types/index.d.ts", |
| 8 | + "exports": { |
| 9 | + ".": { |
| 10 | + "import": "./dist/esm/index.js", |
| 11 | + "require": "./dist/cjs/index.js", |
| 12 | + "default": "./dist/cjs/index.js", |
| 13 | + "development": "./src/index.ts", |
| 14 | + "production": "./dist/cjs/index.js" |
| 15 | + } |
| 16 | + }, |
7 | 17 | "files": [
|
8 | 18 | "dist"
|
9 | 19 | ],
|
10 |
| - "babel": { |
11 |
| - "comments": false, |
12 |
| - "presets": [ |
13 |
| - "@babel/preset-env", |
14 |
| - "@babel/preset-typescript", |
15 |
| - "@babel/preset-react" |
16 |
| - ] |
17 |
| - }, |
18 |
| - "watch": { |
19 |
| - "build": "src/*" |
20 |
| - }, |
21 | 20 | "lint-staged": {
|
22 | 21 | "*.{js,jsx,ts,tsx,md}": [
|
23 | 22 | "prettier --write"
|
|
32 | 31 | "semi": false,
|
33 | 32 | "singleQuote": true
|
34 | 33 | },
|
35 |
| - "scripts": { |
36 |
| - "build": "cross-env rimraf dist && NODE_ENV=production babel --extensions '.js,.jsx,.ts,.tsx' --source-maps --out-dir dist src --copy-files \"**/*.json\"", |
37 |
| - "build:watch": "npm-watch", |
38 |
| - "test": "react-scripts test" |
39 |
| - }, |
40 | 34 | "eslintConfig": {
|
41 | 35 | "extends": "react-app",
|
42 | 36 | "rules": {
|
43 | 37 | "import/no-extraneous-dependencies": 2
|
44 | 38 | }
|
45 | 39 | },
|
46 |
| - "browserslist": { |
47 |
| - "production": [ |
48 |
| - ">0.2%", |
49 |
| - "not dead", |
50 |
| - "not op_mini all" |
51 |
| - ], |
52 |
| - "development": [ |
53 |
| - "last 1 chrome version", |
54 |
| - "last 1 firefox version", |
55 |
| - "last 1 safari version" |
56 |
| - ] |
| 40 | + "scripts": { |
| 41 | + "clean": "bebbi-scripts clean", |
| 42 | + "build": "bebbi-scripts build", |
| 43 | + "watch": "bebbi-scripts build --watch", |
| 44 | + "test": "bebbi-scripts test", |
| 45 | + "format": "bebbi-scripts format", |
| 46 | + "lint": "bebbi-scripts lint", |
| 47 | + "validate": "bebbi-scripts validate", |
| 48 | + "prepare": "husky install" |
57 | 49 | },
|
58 | 50 | "devDependencies": {
|
59 |
| - "@babel/cli": "^7.18.10", |
60 |
| - "@babel/core": "~7.19.1", |
61 |
| - "@babel/preset-env": "~7.19.1", |
62 |
| - "@babel/preset-react": "^7.18.6", |
63 |
| - "@babel/preset-typescript": "^7.18.6", |
64 |
| - "cross-env": "^7.0.3", |
65 |
| - "husky": "^4.3.7", |
66 |
| - "lint-staged": "^10.5.4", |
| 51 | + "bebbi-scripts": "workspace:^", |
| 52 | + "husky": "^8.0.0", |
67 | 53 | "lodash": "4.17.21",
|
68 |
| - "npm-watch": "^0.11.0", |
69 | 54 | "prettier": "^2.8.1",
|
70 | 55 | "react": "^17.0.1",
|
71 |
| - "rimraf": "^3.0.2", |
72 | 56 | "use-debounce": "8.0.4"
|
73 | 57 | },
|
74 | 58 | "peerDependencies": {
|
75 | 59 | "lodash": "4.17.21",
|
76 | 60 | "react": "^17.0.1",
|
77 | 61 | "use-debounce": "8.0.4"
|
78 | 62 | },
|
| 63 | + "dependencies": { |
| 64 | + "react-layout-effect": "^1.0.5" |
| 65 | + }, |
79 | 66 | "author": "gigmade ltd (https://www.gigmade.com)",
|
80 | 67 | "homepage": "",
|
81 | 68 | "license": "MIT",
|
82 |
| - "repository": "", |
83 |
| - "dependencies": { |
84 |
| - "react-layout-effect": "^1.0.5" |
85 |
| - } |
| 69 | + "repository": "" |
86 | 70 | }
|
0 commit comments