-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
93 lines (93 loc) · 1.97 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
{
"name": "vue-stars",
"version": "2.0.0",
"private": false,
"description": "Flexible Vue 3 input control for ratings (stars, etc.)",
"author": "richardtallent <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/richardtallent/vue-stars"
},
"homepage": "https://tallent.us/vue-stars/",
"main": "./dist/vue-stars.umd.js",
"module": "./dist/vue-stars.es.js",
"types": "./dist/vue-stars.d.js",
"style": "./dist/style.css",
"files": [
"dist",
"static"
],
"exports": {
".": {
"import": "./dist/vue-stars.es.js",
"require": "./dist/vue-stars.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"dependencies": {
"vue": "^3.0.5"
},
"devDependencies": {
"@typescript-eslint/parser": "^4.18.0",
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.0.7",
"@vuedx/typecheck": "^0.6.3",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"autoprefixer": "^10.2.5",
"eslint": "^7.22.0",
"eslint-config-tabsanity": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.7.0",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"rollup-plugin-typescript2": "^0.30.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"typescript": "^4.2.3",
"vite": "^2.1.2"
},
"eslintConfig": {
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/prettier",
"tabsanity"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
},
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "es5",
"printWidth": 180
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"exclude": [
"dist"
],
"rules": {
"indentation": "tab",
"declaration-block-trailing-semicolon": null,
"no-descending-specificity": null
}
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
]
}