-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 891 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "react-liberate-persist",
"version": "0.0.11",
"description": "a plugin of react-liberate that provide storage ability.",
"miniprogram": "dist",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"buildOptions": {
"format": [
"esm",
"cjs",
"umd"
],
"dts": true,
"minify": true,
"libraryName": "ReactLiberatePersist",
"globalVariableName": {},
"external": []
},
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"license": "GPL-3.0",
"type": "module",
"scripts": {},
"keywords": [],
"author": "",
"dependencies": {
"savage-types": "workspace:^",
"savage-utils": "workspace:^1.0.65"
},
"devDependencies": {
"react-liberate": "workspace:^",
"vitest": "^0.34.3"
}
}