vue-hook-optimizer 0.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/README.md +54 -0
- package/dist/index.d.mts +19 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +86402 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +86392 -0
- package/dist/index.mjs.map +1 -0
- package/license +1 -0
- package/package.json +70 -0
package/license
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
MIT
|
package/package.json
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
{
|
2
|
+
"name": "vue-hook-optimizer",
|
3
|
+
"version": "0.0.5",
|
4
|
+
"description": "a tool that helps refactor and optimize hook abstractions in Vue components",
|
5
|
+
"homepage": "https://github.com/zcf0508/vue-hook-optimizer",
|
6
|
+
"repository": {
|
7
|
+
"type": "git",
|
8
|
+
"url": "https://github.com/zcf0508/vue-hook-optimizer.git"
|
9
|
+
},
|
10
|
+
"sideEffects": false,
|
11
|
+
"exports": {
|
12
|
+
".": {
|
13
|
+
"types": "./dist/index.d.ts",
|
14
|
+
"require": "./dist/index.cjs",
|
15
|
+
"import": "./dist/index.mjs"
|
16
|
+
}
|
17
|
+
},
|
18
|
+
"main": "./dist/index.cjs",
|
19
|
+
"module": "./dist/index.mjs",
|
20
|
+
"types": "./dist/index.d.ts",
|
21
|
+
"typesVersions": {
|
22
|
+
"*": {
|
23
|
+
"*": [
|
24
|
+
"./dist/*",
|
25
|
+
"./dist/index.d.ts"
|
26
|
+
]
|
27
|
+
}
|
28
|
+
},
|
29
|
+
"files": [
|
30
|
+
"dist"
|
31
|
+
],
|
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
|
+
"keywords": [
|
41
|
+
"vue",
|
42
|
+
"hooks"
|
43
|
+
],
|
44
|
+
"author": "zcf0508 <zcf0508@live.com>",
|
45
|
+
"license": "MIT",
|
46
|
+
"devDependencies": {
|
47
|
+
"@babel/preset-typescript": "^7.22.5",
|
48
|
+
"@babel/traverse": "^7.22.8",
|
49
|
+
"@types/babel__traverse": "^7.20.1",
|
50
|
+
"@types/lodash-es": "^4.17.8",
|
51
|
+
"@types/node": "^20.4.8",
|
52
|
+
"@types/uuid": "^9.0.2",
|
53
|
+
"@typescript-eslint/eslint-plugin": "^6.2.1",
|
54
|
+
"@typescript-eslint/parser": "^6.2.1",
|
55
|
+
"@vue/compiler-sfc": "^3.3.4",
|
56
|
+
"bumpp": "^9.1.1",
|
57
|
+
"cross-env": "^7.0.3",
|
58
|
+
"eslint": "^8.46.0",
|
59
|
+
"eslint-plugin-vue": "^9.16.1",
|
60
|
+
"lodash-es": "^4.17.21",
|
61
|
+
"nodemon": "^3.0.1",
|
62
|
+
"ts-node": "^10.9.1",
|
63
|
+
"tsup": "^7.2.0",
|
64
|
+
"typescript": "^5.1.6",
|
65
|
+
"uuid": "^9.0.0",
|
66
|
+
"vis-network": "^9.1.6",
|
67
|
+
"vitest": "^0.34.1",
|
68
|
+
"vue-eslint-parser": "^9.3.1"
|
69
|
+
}
|
70
|
+
}
|