UNPKG

2.22 kBJSONView Raw
1{
2 "name": "jotai",
3 "private": false,
4 "version": "1.13.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 "peerDependencies": {
66 "@babel/core": "*",
67 "@babel/template": "*",
68 "jotai-devtools": "*",
69 "jotai-immer": "*",
70 "jotai-optics": "*",
71 "jotai-redux": "*",
72 "jotai-tanstack-query": "*",
73 "jotai-urql": "*",
74 "jotai-valtio": "*",
75 "jotai-xstate": "*",
76 "jotai-zustand": "*",
77 "react": ">=16.8"
78 },
79 "peerDependenciesMeta": {
80 "@babel/core": {
81 "optional": true
82 },
83 "@babel/template": {
84 "optional": true
85 },
86 "jotai-devtools": {
87 "optional": true
88 },
89 "jotai-immer": {
90 "optional": true
91 },
92 "jotai-optics": {
93 "optional": true
94 },
95 "jotai-redux": {
96 "optional": true
97 },
98 "jotai-tanstack-query": {
99 "optional": true
100 },
101 "jotai-urql": {
102 "optional": true
103 },
104 "jotai-valtio": {
105 "optional": true
106 },
107 "jotai-zustand": {
108 "optional": true
109 },
110 "jotai-xstate": {
111 "optional": true
112 }
113 }
114}