@ruan-cat/utils 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 +19 -9
- package/readme.md +5 -0
package/package.json
CHANGED
|
@@ -1,24 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruan-cat/utils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "阮喵喵工具集合。一个纯typescript库。",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"_main": "./src/index.ts",
|
|
7
|
-
"_types": "./src/index.ts",
|
|
8
|
-
"_module": "./src",
|
|
9
6
|
"main": "./src/index.ts",
|
|
10
7
|
"types": "./src/index.ts",
|
|
8
|
+
"homepage": "https://github.com/RuanZhongNan/vercel-monorepo-test/tree/main/utils",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/RuanZhongNan/vercel-monorepo-test/issues"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/RuanZhongNan/vercel-monorepo-test.git",
|
|
15
|
+
"directory": "utils"
|
|
16
|
+
},
|
|
11
17
|
"exports": {
|
|
12
18
|
".": {
|
|
13
|
-
"_import": "./src/index.ts",
|
|
14
|
-
"_default": "./src/index.ts",
|
|
15
19
|
"import": "./src/index.ts",
|
|
16
20
|
"types": "./src/index.ts"
|
|
17
21
|
},
|
|
18
|
-
"
|
|
22
|
+
"./src/*": "./src/*"
|
|
19
23
|
},
|
|
20
24
|
"keywords": [],
|
|
21
|
-
"author":
|
|
25
|
+
"author": {
|
|
26
|
+
"name": "ruan-cat",
|
|
27
|
+
"email": "1219043956@qq.com",
|
|
28
|
+
"url": "https://github.com/RuanZhongNan"
|
|
29
|
+
},
|
|
30
|
+
"license": "MIT",
|
|
22
31
|
"publishConfig": {
|
|
23
32
|
"access": "public",
|
|
24
33
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -39,6 +48,7 @@
|
|
|
39
48
|
"generate:type-1": "vue-tsc -p tsconfig.json --composite false --declaration true --emitDeclarationOnly true",
|
|
40
49
|
"generate:type-2": "tsc -p tsconfig.json --composite false --declaration true --emitDeclarationOnly true",
|
|
41
50
|
"generate:type-3": "vue-tsc -p tsconfig.types.json",
|
|
42
|
-
"get-type": "pnpm clean:type && pnpm generate:type-3"
|
|
51
|
+
"get-type": "pnpm clean:type && pnpm generate:type-3",
|
|
52
|
+
"rm:node_modules": "rimraf node_modules"
|
|
43
53
|
}
|
|
44
54
|
}
|