-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "vue-sweetalert-icons",
"version": "5.0.0",
"description": "A super simple Vue wrapper for the beautiful animated SweetAlert status icons",
"main": "dist/sweetalert-icons.umd.js",
"module": "dist/sweetalert-icons.mjs",
"exports": {
".": {
"import": "./dist/sweetalert-icons.mjs",
"require": "./dist/sweetalert-icons.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"browser": {
"./sfc": "src/components/icon.vue"
},
"files": [
"dist/*",
"src/**"
],
"scripts": {
"build": "vite build",
"preversion": "npm run build",
"postpublish": "git push && git push --tags",
"prepareexample": "npm link && cd example && npm i && npm link vue-sweetalert-icons && npm run generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JorgenVatle/vue-sweetalert-icons.git"
},
"keywords": [
"vue",
"sweetalert",
"icons",
"animated"
],
"author": "JorgenVatle",
"license": "ISC",
"bugs": {
"url": "https://github.com/JorgenVatle/vue-sweetalert-icons/issues"
},
"homepage": "https://github.com/JorgenVatle/vue-sweetalert-icons#readme",
"dependencies": {
"color": "^3.1.2",
"validate-color": "^2.1.0"
},
"peerDependencies": {
"vue": ">= 3.0"
},
"devDependencies": {
"@types/node": "^18.18.0",
"@vitejs/plugin-vue": "^4.3.4",
"sass": "^1.68.0",
"typescript": "^5.2.2",
"vite": "^4.4.9"
}
}