-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.6 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
{
"name": "vue-message-plugin-ts",
"version": "1.5.0",
"license": "MIT",
"private": false,
"keywords": [
"vue-message",
"vue-toast",
"vue-notification-ts",
"vue-message-ts"
],
"exports": {
".": "./dist/index",
"./dist/style.css": "./dist/style.css"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": {
"name": "Pxls00",
"email": "abdurahimnasirov123@gmail.com"
},
"github": "https://github.com/pxls00/vue-message-plugin-ts",
"repository": {
"type": "https",
"url": "git+https://github.com/pxls00/vue-message-plugin-ts"
},
"homepage": "https://vue-message-plugin-205f7.web.app",
"main": "dist/index",
"typings": "./dist/index",
"scripts": {
"dev": "vite",
"build": "run-p type-check lint:check build-only",
"preview": "vite preview --port 8080",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint:check": "eslint src/ --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"lint:fix": "prettier --write src/ && yarn lint:check --fix",
"check:all": "run-p type-check lint:check",
"test:unit": "jest",
"pre-commit": "lint-staged"
},
"dependencies": {
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"pinia": "^2.0.33",
"vue": "^3.2.47"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@pinia/testing": "^0.1.2",
"@rushstack/eslint-patch": "^1.2.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.10",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "^0.1.3",
"@vue/vue3-jest": "^29.2.4",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.14.1",
"eslint-plugin-vue-scoped-css": "^2.4.0",
"husky": "^8.0.3",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.60.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vue-tsc": "^1.2.0",
"vue3-jest": "^27.0.0-alpha.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|ts|vue)": "yarn lint:fix"
}
}