vue-hook-optimizer 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "vue-hook-optimizer",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
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 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
+ }