vue-hook-optimizer 0.0.44 → 0.0.45

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,19 +1,25 @@
1
1
  {
2
2
  "name": "vue-hook-optimizer",
3
- "version": "0.0.44",
3
+ "version": "0.0.45",
4
+ "packageManager": "pnpm@8.12.1",
4
5
  "description": "a tool that helps refactor and optimize hook abstractions in Vue components",
5
- "packageManager": "pnpm@8.6.12",
6
+ "author": "zcf0508 <zcf0508@live.com>",
7
+ "license": "MIT",
6
8
  "homepage": "https://github.com/zcf0508/vue-hook-optimizer",
7
9
  "repository": {
8
10
  "type": "git",
9
11
  "url": "https://github.com/zcf0508/vue-hook-optimizer.git"
10
12
  },
13
+ "keywords": [
14
+ "vue",
15
+ "hooks"
16
+ ],
11
17
  "sideEffects": false,
12
18
  "exports": {
13
19
  ".": {
14
20
  "types": "./dist/index.d.ts",
15
- "require": "./dist/index.cjs",
16
- "import": "./dist/index.mjs"
21
+ "import": "./dist/index.mjs",
22
+ "require": "./dist/index.cjs"
17
23
  }
18
24
  },
19
25
  "main": "./dist/index.cjs",
@@ -30,49 +36,44 @@
30
36
  "files": [
31
37
  "dist"
32
38
  ],
33
- "keywords": [
34
- "vue",
35
- "hooks"
36
- ],
37
- "author": "zcf0508 <zcf0508@live.com>",
38
- "license": "MIT",
39
- "devDependencies": {
40
- "@babel/plugin-transform-typescript": "^7.22.5",
41
- "@babel/preset-typescript": "^7.22.5",
42
- "@types/babel__core": "^7.20.1",
43
- "@types/babel__traverse": "^7.20.1",
44
- "@types/lodash-es": "^4.17.8",
45
- "@types/node": "^20.4.8",
46
- "@types/uuid": "^9.0.2",
47
- "@typescript-eslint/eslint-plugin": "^6.2.1",
48
- "@typescript-eslint/parser": "^6.2.1",
49
- "@vitest/coverage-istanbul": "^0.34.6",
50
- "@vue/compiler-sfc": "^3.3.4",
51
- "bumpp": "^9.1.1",
52
- "cross-env": "^7.0.3",
53
- "eslint": "^8.46.0",
54
- "eslint-plugin-vue": "^9.16.1",
55
- "lodash-es": "^4.17.21",
56
- "nodemon": "^3.0.1",
57
- "ts-node": "^10.9.1",
58
- "tsup": "^7.2.0",
59
- "typescript": "^5.1.6",
60
- "uuid": "^9.0.0",
61
- "vis-network": "^9.1.6",
62
- "vitest": "^0.34.1",
63
- "vue-eslint-parser": "^9.3.1"
64
- },
65
39
  "peerDependencies": {
66
40
  "@babel/core": "^7.22.5",
67
41
  "@babel/parser": "^7.22.5",
68
42
  "@babel/traverse": "^7.22.5",
69
- "@babel/types": "^7.22.5"
43
+ "@babel/types": "^7.22.5",
44
+ "@vue/compiler-sfc": "^3.3.4"
45
+ },
46
+ "devDependencies": {
47
+ "@antfu/eslint-config": "^2.8.0",
48
+ "@babel/preset-typescript": "^7.23.3",
49
+ "@types/babel__core": "^7.20.5",
50
+ "@types/babel__traverse": "^7.20.4",
51
+ "@types/lodash-es": "^4.17.12",
52
+ "@types/node": "^20.10.5",
53
+ "@types/uuid": "^9.0.7",
54
+ "@typescript-eslint/eslint-plugin": "^6.15.0",
55
+ "@typescript-eslint/parser": "^6.15.0",
56
+ "@vitest/coverage-istanbul": "^0.34.6",
57
+ "bumpp": "^9.2.1",
58
+ "cross-env": "^7.0.3",
59
+ "eslint": "^8.57.0",
60
+ "eslint-plugin-security": "^2.1.1",
61
+ "lodash-es": "^4.17.21",
62
+ "nodemon": "^3.0.2",
63
+ "ts-node": "^10.9.2",
64
+ "tsup": "^7.3.0",
65
+ "typescript": "^5.3.3",
66
+ "vis-network": "^9.1.9",
67
+ "vitest": "^0.34.6",
68
+ "vue-eslint-parser": "^9.3.2",
69
+ "eslint-plugin-vue-hook-optimizer": "0.0.45"
70
70
  },
71
71
  "scripts": {
72
72
  "dev": "nodemon",
73
73
  "dev:ext": "npm -C packages/vscode run dev",
74
74
  "build": "tsup",
75
75
  "build:ext": "npm -C packages/vscode run build",
76
+ "build:eslint": "npm -C packages/eslint run build",
76
77
  "play": "npm -C packages/playground run dev",
77
78
  "lint": "eslint .",
78
79
  "test": "vitest",