-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.07 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
{
"name": "vue-haystack",
"version": "1.0.0-rc.3",
"description": "Lightweight, flexible system for modal dialogs, snackbars, toasts, ...",
"homepage": "https://jshmrtn.github.io/vue-haystack/",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/jshmrtn/vue-haystack"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs -d distDocs",
"build": "rm -rf dist && vite build",
"prepublishOnly": "npm run test && npm run build",
"package:publish": "npm publish",
"test": "npm run test:lint",
"test:lint": "eslint ./ --ext .vue,.ts"
},
"keywords": [
"haystack",
"vue",
"vue3",
"modal",
"popup",
"snackbar",
"toast"
],
"author": "Leo Zurbriggen",
"license": "MIT",
"exports": {
".": {
"require": "./dist/vue-haystack.cjs.js",
"import": "./dist/vue-haystack.es.js",
"types": "./dist/src/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"main": "dist/vue-haystack.cjs.js",
"module": "dist/vue-haystack.es.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"peerDependencies": {
"vue": ">= 3.0.0"
},
"devDependencies": {
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vuepress/bundler-vite": "^2.0.0-rc.7",
"@vuepress/plugin-search": "^2.0.0-beta.35",
"@vuepress/theme-default": "^2.0.0-rc.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.9.0",
"vue": "^3.4.24",
"vuepress": "^2.0.0-beta.35"
},
"dependencies": {
"uuid": "^9.0.1"
}
}