-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.19 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
{
"name": "@datagouv/vue-toaster",
"version": "2.4.5",
"description": "Vue 3 toaster notification",
"type": "module",
"files": [
"dist",
"src",
"types"
],
"types": "./dist/vue-toaster.d.ts",
"module": "./dist/vue-toaster.js",
"scripts": {
"start": "npm run dev",
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"preversion": "npm run build && vitest run",
"publish-version": "npm publish --access public"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.6.1",
"jsdom": "^22.1.0",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.6.1",
"vue": "^3.4.25",
"vue-tsc": "^1.8.27"
},
"dependencies": {
"mitt": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/datagouv/vue-toaster"
},
"keywords": [
"toast",
"toaster",
"notification",
"vue",
"vue3",
"toastify"
],
"author": "DINUM",
"license": "MIT",
"bugs": {
"url": "https://github.com/datagouv/vue-toaster/issues"
},
"homepage": "https://github.com/datagouv/vue-toaster"
}