1 | {
|
2 | "name": "jotai",
|
3 | "private": false,
|
4 | "version": "1.11.1",
|
5 | "description": "👻 Next gen state management that will spook you",
|
6 | "main": "./index.js",
|
7 | "types": "./index.d.ts",
|
8 | "typesVersions": {
|
9 | "<4.5": {
|
10 | "esm/*": [
|
11 | "ts3.4/*"
|
12 | ],
|
13 | "*": [
|
14 | "ts3.4/*"
|
15 | ]
|
16 | }
|
17 | },
|
18 | "exports": {
|
19 | "./package.json": "./package.json",
|
20 | ".": {
|
21 | "import": {
|
22 | "types": "./esm/index.d.mts",
|
23 | "default": "./esm/index.mjs"
|
24 | },
|
25 | "types": "./index.d.ts",
|
26 | "module": "./esm/index.js",
|
27 | "default": "./index.js"
|
28 | },
|
29 | "./*": {
|
30 | "import": {
|
31 | "types": "./esm/*.d.mts",
|
32 | "default": "./esm/*.mjs"
|
33 | },
|
34 | "types": "./*.d.ts",
|
35 | "module": "./esm/*.js",
|
36 | "default": "./*.js"
|
37 | }
|
38 | },
|
39 | "files": [
|
40 | "**"
|
41 | ],
|
42 | "sideEffects": false,
|
43 | "engines": {
|
44 | "node": ">=12.20.0"
|
45 | },
|
46 | "repository": {
|
47 | "type": "git",
|
48 | "url": "git+https://github.com/pmndrs/jotai.git"
|
49 | },
|
50 | "keywords": [
|
51 | "react",
|
52 | "state",
|
53 | "manager",
|
54 | "management",
|
55 | "recoil",
|
56 | "store"
|
57 | ],
|
58 | "author": "Daishi Kato",
|
59 | "contributors": [],
|
60 | "license": "MIT",
|
61 | "bugs": {
|
62 | "url": "https://github.com/pmndrs/jotai/issues"
|
63 | },
|
64 | "homepage": "https://github.com/pmndrs/jotai",
|
65 | "resolutions": {
|
66 | "date-fns": "2.27.0"
|
67 | },
|
68 | "peerDependencies": {
|
69 | "@babel/core": "*",
|
70 | "@babel/template": "*",
|
71 | "jotai-immer": "*",
|
72 | "jotai-optics": "*",
|
73 | "jotai-redux": "*",
|
74 | "jotai-tanstack-query": "*",
|
75 | "jotai-urql": "*",
|
76 | "jotai-valtio": "*",
|
77 | "jotai-xstate": "*",
|
78 | "jotai-zustand": "*",
|
79 | "react": ">=16.8"
|
80 | },
|
81 | "peerDependenciesMeta": {
|
82 | "@babel/core": {
|
83 | "optional": true
|
84 | },
|
85 | "@babel/template": {
|
86 | "optional": true
|
87 | },
|
88 | "jotai-immer": {
|
89 | "optional": true
|
90 | },
|
91 | "jotai-optics": {
|
92 | "optional": true
|
93 | },
|
94 | "jotai-redux": {
|
95 | "optional": true
|
96 | },
|
97 | "jotai-tanstack-query": {
|
98 | "optional": true
|
99 | },
|
100 | "jotai-urql": {
|
101 | "optional": true
|
102 | },
|
103 | "jotai-valtio": {
|
104 | "optional": true
|
105 | },
|
106 | "jotai-zustand": {
|
107 | "optional": true
|
108 | },
|
109 | "jotai-xstate": {
|
110 | "optional": true
|
111 | }
|
112 | }
|
113 | }
|