@ruan-cat/utils 1.0.4 → 1.0.5
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 +15 -5
- package/tsconfig.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruan-cat/utils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "阮喵喵工具集合。一个纯typescript库。",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|
|
@@ -38,13 +38,23 @@
|
|
|
38
38
|
"tsconfig.json"
|
|
39
39
|
],
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"typedoc": "^0.
|
|
42
|
-
"typedoc-plugin-markdown": "^4.
|
|
43
|
-
"typescript": "
|
|
41
|
+
"typedoc": "^0.26.7",
|
|
42
|
+
"typedoc-plugin-markdown": "^4.2.7",
|
|
43
|
+
"typescript": "5.4.5",
|
|
44
|
+
"@ruan-cat/vuepress-preset-config": "^0.1.0"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"typescript": "5.4.5"
|
|
44
48
|
},
|
|
45
49
|
"scripts": {
|
|
50
|
+
"copy-readme": "cpx readme.md docs",
|
|
46
51
|
"typedoc": "typedoc",
|
|
47
|
-
"
|
|
52
|
+
"docs:dev-main": "vuepress-vite dev docs",
|
|
53
|
+
"docs:dev": "turbo docs:dev",
|
|
54
|
+
"build:docs-main": "vuepress-vite build docs",
|
|
55
|
+
"build:docs": "turbo do-build-docs",
|
|
56
|
+
"clean:type": "rimraf dist",
|
|
57
|
+
"clear": "rimraf dist .turbo .vercel .cache .temp",
|
|
48
58
|
"generate:type-1": "vue-tsc -p tsconfig.json --composite false --declaration true --emitDeclarationOnly true",
|
|
49
59
|
"generate:type-2": "tsc -p tsconfig.json --composite false --declaration true --emitDeclarationOnly true",
|
|
50
60
|
"generate:type-3": "vue-tsc -p tsconfig.types.json",
|