-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) Β· 3.1 KB
/
package.json
File metadata and controls
112 lines (112 loc) Β· 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "jotai-babel",
"description": "π»π ",
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@10.28.0",
"author": "Daishi Kato",
"repository": {
"type": "git",
"url": "https://github.com/jotaijs/jotai-babel.git"
},
"exports": {
"./package.json": "./package.json",
"./preset": {
"require": {
"types": "./dist/cjs/preset.d.ts",
"default": "./dist/cjs/preset.js"
},
"default": {
"types": "./dist/preset.d.ts",
"default": "./dist/preset.js"
}
},
"./plugin-debug-label": {
"require": {
"types": "./dist/cjs/plugin-debug-label.d.ts",
"default": "./dist/cjs/plugin-debug-label.js"
},
"default": {
"types": "./dist/plugin-debug-label.d.ts",
"default": "./dist/plugin-debug-label.js"
}
},
"./plugin-react-refresh": {
"require": {
"types": "./dist/cjs/plugin-react-refresh.d.ts",
"default": "./dist/cjs/plugin-react-refresh.js"
},
"default": {
"types": "./dist/plugin-react-refresh.d.ts",
"default": "./dist/plugin-react-refresh.js"
}
}
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"scripts": {
"compile": "rm -rf dist && pnpm run '/^compile:.*/'",
"compile:esm": "tsc -p tsconfig.esm.json",
"compile:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"test": "pnpm run '/^test:.*/'",
"test:format": "prettier -c .",
"test:lint": "eslint .",
"test:types": "tsc -p . --noEmit",
"test:types:examples": "tsc -p examples --noEmit",
"test:spec": "vitest run",
"examples:01_minimal": "DIR=01_minimal vite"
},
"keywords": [
"jotai",
"react",
"babel",
"state"
],
"license": "MIT",
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-react-jsx": "^7.28.6",
"@babel/plugin-transform-typescript": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/template": "^7.28.6",
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/babel__core": "^7.20.5",
"@types/babel__template": "^7.4.4",
"@types/node": "^25.2.1",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"happy-dom": "^20.5.0",
"jotai": "^2.17.1",
"jotai-babel": "link:",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"ts-expect": "^1.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@babel/core": ">=7.0.0",
"@babel/template": ">=7.0.0",
"jotai": ">=2.0.0"
}
}