-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
30 lines (30 loc) · 877 Bytes
/
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
{
"name": "shared-zustand",
"version": "2.1.0",
"description": "cross-tab state sharing for zustand",
"repository": "Tom-Julux/shared-zustand",
"license": "MIT",
"author": "Tom-Julux <[email protected]>",
"main": "dist/index.cjs.js",
"unpkg": "dist/index.js",
"module": "dist/index.js",
"source": "src/index.ts",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "parcel build --no-scope-hoist",
"prepublishOnly": "parcel build --no-scope-hoist",
"start": "parcel serve example/index.html --no-hmr",
"watch": "parcel watch"
},
"peerDependencies": {
"zustand": ">= 4.0.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.13.2",
"@parcel/transformer-typescript-types": "^2.13.2",
"parcel": "^2.13.2"
}
}