This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
120 lines (120 loc) · 3.19 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "vuetensils",
"version": "0.13.3",
"description": "A 'naked' component library for building accessible, lightweight, on-brand applications.",
"author": {
"name": "Austin Gil",
"email": "[email protected]",
"url": "https://austingil.com"
},
"homepage": "https://vuetensils.com",
"license": "MIT",
"main": "dist/vuetensils.umd.js",
"module": "dist/vuetensils.mjs",
"files": [
"/src",
"/dist",
"/types"
],
"typings": "types",
"repository": {
"type": "git",
"url": "git+https://github.com/AustinGil/vuetensils.git"
},
"scripts": {
"dev": "npm run docs:dev",
"pa11y": "concurrently -k \"npm run docs:dev\" \"wait-on http://localhost:8080 && pa11y-ci --config=.pa11yci.js\"",
"eslint": "eslint src/**/*.{js,ts,vue,tsx,jsx}",
"lint": "eslint --no-error-on-unmatched-pattern src/**/*.{js,ts,vue,tsx,jsx,css,scss,md} docs/**/*.{js,ts,vue,tsx,jsx,css,scss,md}",
"lint:diff": "eslint $(git diff --name-only -- src/*.vue src/*.js docs/*.vue docs/*.js)",
"ts": "tsc",
"audit": "npm run lint:diff && npm run test:unit",
"build": "vue-typegen gen -s src -o types && vite build",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"commit": "git add . && git commit",
"release": "release-it",
"deploy": "release-it"
},
"dependencies": {
"vue-demi": "latest"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@faker-js/faker": "^7.6.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/test-utils": "^2.2.6",
"@vuepress/client": "^2.0.0-beta.59",
"@vuepress/plugin-google-analytics": "^1.9.7",
"commitizen": "^4.2.6",
"concurrently": "^7.6.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"eslint-plugin-vuejs-accessibility": "^2.0.0",
"lefthook": "^1.2.6",
"pa11y-ci": "^3.0.1",
"prettier": "^2.8.1",
"release-it": "^15.5.1",
"stylelint": "^14.16.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"typescript": "^4.9.4",
"vite": "^4.0.2",
"vue": "^3.2.45",
"vue-docgen-api": "^4.56.0",
"vue-inbrowser-compiler": "^4.55.0",
"vue-live": "^2.3.2",
"vue-router": "^4.1.6",
"vue-typegen": "^0.2.0",
"vuepress": "^2.0.0-beta.59",
"vuepress-plugin-live": "^1.6.2",
"wait-on": "^7.0.1"
},
"keywords": [
"vue",
"vuejs",
"vue.js",
"vue2",
"web",
"components",
"ui",
"library",
"component library",
"accessibility",
"accessible",
"a11y",
"semantic",
"alert",
"async",
"drawer",
"dropdown",
"img",
"image",
"lazy-load",
"lazyload",
"input",
"textarea",
"checkbox",
"radio",
"select",
"option",
"intersection observer",
"modal",
"dialog",
"dialogue",
"tabs",
"toggle",
"collapse"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}