1 | {
|
2 | "name": "@restart/hooks",
|
3 | "version": "0.4.11",
|
4 | "main": "cjs/index.js",
|
5 | "types": "cjs/index.d.ts",
|
6 | "module": "esm/index.js",
|
7 | "exports": {
|
8 | ".": {
|
9 | "types": "./esm/index.d.ts",
|
10 | "import": "./esm/index.js",
|
11 | "require": "./cjs/index.js"
|
12 | },
|
13 | "./*": {
|
14 | "types": "./esm/*.d.ts",
|
15 | "import": "./esm/*.js",
|
16 | "require": "./cjs/*.js"
|
17 | }
|
18 | },
|
19 | "repository": {
|
20 | "type": "git",
|
21 | "url": "git+https://github.com/jquense/react-common-hooks.git"
|
22 | },
|
23 | "author": {
|
24 | "name": "Jason Quense",
|
25 | "email": "monastic.panic@gmail.com"
|
26 | },
|
27 | "license": "MIT",
|
28 | "bugs": {
|
29 | "url": "https://github.com/react-restart/hooks/issues"
|
30 | },
|
31 | "homepage": "https://github.com/react-restart/hooks#readme",
|
32 | "jest": {
|
33 | "preset": "@4c",
|
34 | "testEnvironment": "jsdom",
|
35 | "setupFilesAfterEnv": [
|
36 | "./test/setup.js"
|
37 | ]
|
38 | },
|
39 | "prettier": {
|
40 | "singleQuote": true,
|
41 | "semi": false,
|
42 | "trailingComma": "all"
|
43 | },
|
44 | "publishConfig": {
|
45 | "access": "public",
|
46 | "directory": "lib"
|
47 | },
|
48 | "release": {
|
49 | "conventionalCommits": true
|
50 | },
|
51 | "peerDependencies": {
|
52 | "react": ">=16.8.0"
|
53 | },
|
54 | "dependencies": {
|
55 | "dequal": "^2.0.3"
|
56 | }
|
57 | }
|