-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 2.73 KB
/
package.json
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
{
"name": "jotai-scope",
"description": "👻🔭",
"version": "0.7.2",
"type": "module",
"author": "Daishi Kato",
"contributors": [
"yf-yang (https://github.com/yf-yang)",
"David Maskasky (https://github.com/dmaskasky)"
],
"repository": {
"type": "git",
"url": "https://github.com/jotaijs/jotai-scope.git"
},
"bugs": {
"url": "https://github.com/jotaijs/jotai-scope/issues"
},
"homepage": "https://jotai.org/docs/extensions/scope",
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"packageManager": "[email protected]",
"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",
"fix": "pnpm run '/^fix:.*/'",
"fix:format": "prettier --write .",
"fix:lint": "eslint --config ./eslint.config.ts --fix .",
"test": "pnpm run \"/^test:.*/\"",
"test:format": "prettier --list-different .",
"test:types": "tsc --noEmit",
"test:lint": "eslint .",
"test:spec": "vitest run"
},
"keywords": [
"jotai",
"react",
"scope"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@testing-library/dom": "10.0.0",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/minimalistic-assert": "^1.0.3",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"happy-dom": "^15.11.7",
"jiti": "^2.4.2",
"jotai": "2.11.1",
"jotai-scope": "link:",
"minimalistic-assert": "^1.0.1",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^4.0.11",
"typescript": "^5.7.2",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11",
"vitest": "^3.0.3"
},
"peerDependencies": {
"jotai": ">=2.9.3"
},
"engines": {
"node": ">=12.20.0"
}
}