-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vue-hook-optimizer",
"version": "0.0.65",
"description": "a tool that helps refactor and optimize hook abstractions in Vue components",
"author": "zcf0508 <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/zcf0508/vue-hook-optimizer",
"repository": {
"type": "git",
"url": "https://github.com/zcf0508/vue-hook-optimizer.git"
},
"keywords": [
"vue",
"hooks"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "nodemon",
"dev:ext": "npm -C packages/vscode run dev",
"build": "tsup",
"build:ext": "npm -C packages/vscode run build",
"build:eslint": "npm -C packages/eslint run build",
"play": "npm -C packages/playground run dev",
"lint": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"release": "bumpp -r",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@babel/core": "^7.22.5",
"@babel/parser": "^7.22.5",
"@babel/traverse": "^7.22.5",
"@babel/types": "^7.22.5",
"@vue/compiler-sfc": "^3.4.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.0",
"@babel/preset-typescript": "^7.24.1",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.20.5",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.7",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-istanbul": "^1.5.2",
"bumpp": "^9.4.1",
"cross-env": "^7.0.3",
"eslint": "^9.1.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-vue-hook-optimizer": "workspace:*",
"eslint-typegen": "^0.2.4",
"fast-glob": "^3.3.2",
"lodash-es": "^4.17.21",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vis-network": "^9.1.9",
"vitest": "^1.5.2",
"vue-eslint-parser": "^9.4.2"
}
}