-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "supercharged-slider",
"version": "0.5.7",
"description": "A super modular tiny slider library.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js,vue}": "eslint ./src/**/*.ts --fix",
"*.scss": "stylelint -s --config-basedir --fix"
},
"dependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
},
"devDependencies": {
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-vue": "^7.16.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"postcss": "^8.4.4",
"postcss-scss": "^4.0.2",
"sass": "1.32.13",
"stylelint": "^14.1.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"typescript": "4.5.4",
"vite": "^2.1.0",
"vite-plugin-dts": "^1.4.0"
},
"pre-commit": "lint",
"keywords": [
"slider",
"tiny",
"modular",
"carousel"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts"
}