lyb-js 1.0.9 → 1.1.0
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 +19 -6
package/package.json
CHANGED
|
@@ -1,18 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lyb-js",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"author": "冷弋白",
|
|
5
5
|
"description": "lyb自用JS方法库",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/lengyibai/lyb-js.git"
|
|
9
|
-
},
|
|
10
6
|
"license": "ISC",
|
|
11
7
|
"main": "./dist/index.js",
|
|
12
8
|
"types": "./dist/index.d.ts",
|
|
13
9
|
"scripts": {
|
|
14
10
|
"build": "tsc"
|
|
15
11
|
},
|
|
12
|
+
"exports": {
|
|
13
|
+
"./*": "./dist/*"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/lengyibai/lyb-js.git"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"冷弋白",
|
|
25
|
+
"lengyibai",
|
|
26
|
+
"lyb",
|
|
27
|
+
"lyb-js"
|
|
28
|
+
],
|
|
16
29
|
"devDependencies": {
|
|
17
30
|
"@types/node": "^22.10.5",
|
|
18
31
|
"typescript": "^5.7.2"
|
|
@@ -21,4 +34,4 @@
|
|
|
21
34
|
"dayjs": "^1.11.13",
|
|
22
35
|
"decimal.js": "^10.4.3"
|
|
23
36
|
}
|
|
24
|
-
}
|
|
37
|
+
}
|