-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.38 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
{
"name": "vue-nice-validate",
"version": "3.2.5",
"license": "MIT",
"main": "src/index.ts",
"bin": "src/index.ts",
"homepage": "https://github.com/yogeshgalav/vue-nice-validate",
"description": "Vue validation library with directive and data based approch.",
"keywords": [
"vue nice validate",
"vue validate",
"vue3 validate",
"v-validate"
],
"author": "Yogesh Galav <[email protected]> (https://github.com/yogeshgalav/)",
"private": false,
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:preview": "vitepress preview docs",
"example:dev": "vite dev example",
"example:build": "vite build example",
"example:serve": "vite serve example",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src",
"cz": "git-cz",
"prepublishOnly": "npm run lint && npm run build",
"commit-message": "npm run commitlint -e -V",
"semantic-release:local": "npm run build && semantic-release --no-ci",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/yogeshgalav/vue-nice-validate"
},
"bugs": {
"url": "https://github.com/yogeshgalav/vue-nice-validate/issues"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.0.1",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-vue": "^5.0.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-vue": "^9.21.1",
"git-cz": "^4.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"semantic-release": "^22.0.7",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitepress": "^1.0.0-rc.35",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^1.8.5"
},
"dependencies": {
"vue": "^3.4.19"
}
}