-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "super-localstorage",
"version": "2.1.0",
"description": "super-localstorage 是 利用window.localStorage进行储存的插件可以加密储存【^运算符操作加密,可自定义密匙】,且可存取【Array ,Object, Boolean, Number, String】等类型的数据无需做JSON.stringify()或JSON.parse()处理。",
"keywords": [
"node.js",
"javascript",
"vue",
"localstorage",
"storage",
"存储",
"本地存储"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"files": [
"dist"
],
"devDependencies": {
"typescript": "latest",
"tsup": "latest"
},
"scripts": {
"打包": "tsup",
"登录": "npm login",
"更新一个补丁": "npm version patch",
"更新一个小改动": "npm version minor",
"更新一个大改动": "npm version major",
"发布": "npm publish",
"更新并发布": "npm version patch && npm publish"
},
"bugs": {
"email": "[email protected]",
"url": "https://gitee.com/mxp_open/super-localstorage/issues"
},
"repository": {
"type": "git",
"url": "https://gitee.com/mxp_open/super-localstorage"
},
"author": {
"name": "O昵称重要吗O",
"email": "[email protected]",
"url": "https://gitee.com/mxp131011"
},
"license": "MIT",
"homepage": "https://gitee.com/mxp_open/super-localstorage"
}