vue-hook-optimizer 0.0.5 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +57 -54
- package/dist/index.d.mts +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +290 -41
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +289 -41
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -10
package/package.json
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"name": "vue-hook-optimizer",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.7",
|
4
4
|
"description": "a tool that helps refactor and optimize hook abstractions in Vue components",
|
5
|
+
"packageManager": "pnpm@8.6.12",
|
5
6
|
"homepage": "https://github.com/zcf0508/vue-hook-optimizer",
|
6
7
|
"repository": {
|
7
8
|
"type": "git",
|
@@ -29,14 +30,6 @@
|
|
29
30
|
"files": [
|
30
31
|
"dist"
|
31
32
|
],
|
32
|
-
"scripts": {
|
33
|
-
"dev": "nodemon",
|
34
|
-
"build": "tsup",
|
35
|
-
"play": "npm -C playground run dev",
|
36
|
-
"test": "vitest",
|
37
|
-
"release": "bumpp",
|
38
|
-
"prepublishOnly": "npm run build"
|
39
|
-
},
|
40
33
|
"keywords": [
|
41
34
|
"vue",
|
42
35
|
"hooks"
|
@@ -66,5 +59,15 @@
|
|
66
59
|
"vis-network": "^9.1.6",
|
67
60
|
"vitest": "^0.34.1",
|
68
61
|
"vue-eslint-parser": "^9.3.1"
|
62
|
+
},
|
63
|
+
"scripts": {
|
64
|
+
"dev": "nodemon",
|
65
|
+
"dev:ext": "npm -C packages/vscode run dev",
|
66
|
+
"build": "tsup",
|
67
|
+
"play": "npm -C packages/playground run dev",
|
68
|
+
"lint": "eslint .",
|
69
|
+
"test": "vitest",
|
70
|
+
"typecheck": "tsc --noEmit",
|
71
|
+
"release": "bumpp -r"
|
69
72
|
}
|
70
|
-
}
|
73
|
+
}
|