pen-it 1.0.2 → 1.0.3
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.3",
|
|
4
|
+
"description": "用笔锚定记忆中的前端常用工具函数 — A lightweight frontend utility library for type checking, date/number formatting, string manipulation, storage, deep clone, array operations, cookies, and browser APIs",
|
|
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",
|