pen-it 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +25 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pen-it",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "用笔锚定记忆中的前端常用工具函数,一个轻量级的前端实用程序库,支持类型检查、日期/数字格式化、字符串操作、数据存储、深度克隆、数组操作、Cookie 以及浏览器 API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -22,12 +22,33 @@
|
|
|
22
22
|
],
|
|
23
23
|
"keywords": [
|
|
24
24
|
"utils",
|
|
25
|
-
"
|
|
25
|
+
"utilities",
|
|
26
26
|
"toolkit",
|
|
27
|
-
"helpers"
|
|
27
|
+
"helpers",
|
|
28
|
+
"frontend",
|
|
29
|
+
"typescript",
|
|
30
|
+
"type-checking",
|
|
31
|
+
"date-format",
|
|
32
|
+
"number-format",
|
|
33
|
+
"deep-clone",
|
|
34
|
+
"string-manipulation",
|
|
35
|
+
"array-operations",
|
|
36
|
+
"cookie",
|
|
37
|
+
"localstorage",
|
|
38
|
+
"browser-api",
|
|
39
|
+
"debounce",
|
|
40
|
+
"throttle"
|
|
28
41
|
],
|
|
29
42
|
"author": "newborn_calf",
|
|
30
43
|
"license": "MIT",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/Libao-Jun/pen-it"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://github.com/Libao-Jun/pen-it#readme",
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/Libao-Jun/pen-it/issues"
|
|
51
|
+
},
|
|
31
52
|
"packageManager": "pnpm@10.19.0",
|
|
32
53
|
"devDependencies": {
|
|
33
54
|
"@rollup/plugin-typescript": "^12.3.0",
|