-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "zustand-injectors",
"private": false,
"description": "A sweet way of lazy load slices",
"version": "0.0.4",
"author": "Danilo Britto",
"repository": {
"type": "git",
"url": "https://github.com/zustandjs/zustand-injectors.git"
},
"source": "./src/index.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"check": "biome check ./src",
"test": "vitest run"
},
"keywords": [
"react",
"zustand",
"injectors"
],
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"microbundle": "^0.15.1",
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.2",
"vitest": "^1.5.0"
},
"peerDependencies": {
"zustand": "^4.5.2"
}
}