-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.04 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.04 KB
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
{
"name": "vue-scrolling-table",
"version": "2.0.0",
"description": "A Vue 3 component to create tables with vertical and horizontal scrolling. Flexbox-based.",
"author": "richardtallent <richard@tallent.us>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/richardtallent/vue-scrolling-table"
},
"homepage": "https://tallent.us/vue-scrolling-table/",
"private": false,
"main": "./dist/vue-scrolling-table.umd.js",
"module": "./dist/vue-scrolling-table.es.js",
"types": "./dist/vue-scrolling-table.d.ts",
"style": "./dist/style.css",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/vue-scrolling-table.es.js",
"require": "./dist/vue-scrolling-table.umd.js"
}
},
"scripts": {
"dev": "vite",
"devs": "vite --https",
"build": "vite build"
},
"dependencies": {
"vue": "^3.2.31"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.14.0",
"@vitejs/plugin-vue": "^2.2.4",
"@vue/compiler-sfc": "^3.2.31",
"autoprefixer": "^10.4.2",
"eslint": "^8.11.0",
"eslint-config-tabsanity": "^2.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"rollup-plugin-typescript2": "^0.31.2",
"stylelint": "^14.5.3",
"stylelint-config-standard": "^25.0.0",
"typescript": "^4.6.2",
"vite": "^2.8.6"
},
"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": [
"> 1%",
"last 2 versions",
"not ie < 11",
"maintained node versions"
]
}