1 | {
|
2 | "name": "jotai",
|
3 | "private": false,
|
4 | "version": "2.4.3",
|
5 | "description": "👻 Primitive and flexible state management for React",
|
6 | "main": "./index.js",
|
7 | "types": "./index.d.ts",
|
8 | "typesVersions": {
|
9 | ">=4.8": {
|
10 | "esm/*": [
|
11 | "esm/*"
|
12 | ],
|
13 | "*": [
|
14 | "*"
|
15 | ]
|
16 | },
|
17 | ">=3.8": {
|
18 | "esm/*": [
|
19 | "ts3.8/*"
|
20 | ],
|
21 | "*": [
|
22 | "ts3.8/*"
|
23 | ]
|
24 | },
|
25 | "*": {
|
26 | "esm/*": [
|
27 | "ts_version_3.8_and_above_is_required.d.ts"
|
28 | ],
|
29 | "*": [
|
30 | "ts_version_3.8_and_above_is_required.d.ts"
|
31 | ]
|
32 | }
|
33 | },
|
34 | "exports": {
|
35 | "./package.json": "./package.json",
|
36 | ".": {
|
37 | "types": "./index.d.ts",
|
38 | "import": {
|
39 | "types": "./esm/index.d.mts",
|
40 | "default": "./esm/index.mjs"
|
41 | },
|
42 | "default": "./index.js"
|
43 | },
|
44 | "./*": {
|
45 | "types": "./*.d.ts",
|
46 | "import": {
|
47 | "types": "./esm/*.d.mts",
|
48 | "default": "./esm/*.mjs"
|
49 | },
|
50 | "default": "./*.js"
|
51 | }
|
52 | },
|
53 | "files": [
|
54 | "**"
|
55 | ],
|
56 | "sideEffects": false,
|
57 | "engines": {
|
58 | "node": ">=12.20.0"
|
59 | },
|
60 | "repository": {
|
61 | "type": "git",
|
62 | "url": "git+https://github.com/pmndrs/jotai.git"
|
63 | },
|
64 | "keywords": [
|
65 | "react",
|
66 | "state",
|
67 | "manager",
|
68 | "management",
|
69 | "recoil",
|
70 | "store"
|
71 | ],
|
72 | "author": "Daishi Kato",
|
73 | "contributors": [],
|
74 | "license": "MIT",
|
75 | "bugs": {
|
76 | "url": "https://github.com/pmndrs/jotai/issues"
|
77 | },
|
78 | "homepage": "https://github.com/pmndrs/jotai",
|
79 | "peerDependencies": {
|
80 | "@types/react": ">=17.0.0",
|
81 | "react": ">=17.0.0"
|
82 | },
|
83 | "peerDependenciesMeta": {
|
84 | "react": {
|
85 | "optional": true
|
86 | },
|
87 | "@types/react": {
|
88 | "optional": true
|
89 | }
|
90 | }
|
91 | }
|