-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "@bye_past/vuex-helpers",
"version": "0.1.1",
"description": "vuex-helpers is a utility library for Vue 3 and Vuex 4, simplifying the use of Vuex's mapper functions. This library provides a set of hooks for Vuex, making it more concise to use Vuex in Vue components.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"commit": "npx cz"
},
"repository": {
"type": "git",
"url": "https://github.com/ByePastHub/vuex-helpers.git"
},
"keywords": [
"vuex-helpers",
"vue",
"vue-router"
],
"files": [
"dist",
"src"
],
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"czConfig": "cz.config.mjs"
}
},
"author": "ByePast",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@vue/compiler-sfc": "^3.3.4",
"commitizen": "^4.3.0",
"cz-git": "^1.7.1",
"husky": "7",
"rollup": "^3.28.0",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"vue": "^3.3.4",
"vuex": "^4.1.0"
}
}