-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
{
"name": "mosha-vue-toastify",
"version": "1.0.23",
"license": "MIT",
"description": "A light weight and fun Vue 3 toast or notification or snack bar or however you wanna call it library.",
"files": [
"dist"
],
"main": "./dist/mosha-vue-toastify.umd.js",
"module": "./dist/mosha-vue-toastify.es.js",
"typings": "dist/main.d.ts",
"style": "./dist/style.css",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "vite",
"lint": "eslint 'lib/**/*.{ts,vue}'",
"format": "prettier --config .prettierrc 'lib/**/*.{ts,vue}' --write",
"build": "vite build && tsc -P tsconfig.json",
"serve": "vite preview",
"example:update": "yarn build && cd examples/vite-sample && yarn link \"mosha-vue-toastify\"",
"example:dev": "cd examples/vite-sample && yarn dev",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"deploy": "sh deploy.sh"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.32",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-rc.4",
"autoprefixer": "^10.2.5",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"jest": "^26.6.3",
"path": "^0.12.7",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"tailwindcss": "^2.0.4",
"ts-jest": "^26.5.4",
"typescript": "^4.1.3",
"vite": "^2.0.5",
"vitepress": "^0.12.2",
"vue": "^3.0.5",
"vue-eslint-parser": "^7.6.0",
"vue-jest": "^5.0.0-alpha.7"
},
"keywords": [
"vue",
"vue3",
"notification",
"toast",
"snackbar",
"message",
"mosha-vue-toastify"
],
"repository": {
"type": "git",
"url": "https://github.com/szboynono/mosha-vue-toastify.git"
}
}