-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·38 lines (38 loc) · 1.18 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
{
"name": "announcekit-vue",
"version": "2.3.0",
"description": "Use AnnounceKit widgets in your VueJS App",
"repository": "https://github.com/announcekitapp/announcekit-vue",
"homepage": "https://announcekit.app",
"keywords": [
"announcekit",
"newsfeed",
"changelog",
"vue"
],
"author": "announcekit",
"license": "MIT",
"main": "dist/announcekit.umd.js",
"module": "dist/announcekit.esm.js",
"unpkg": "dist/announcekit.min.js",
"browser": {
"./sfc": "src/announcekit.vue"
},
"scripts": {
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config ./rollup.config.js --format umd --file dist/announcekit.umd.js",
"build:es": "rollup --config ./rollup.config.js --format es --file dist/announcekit.esm.js",
"build:unpkg": "rollup --config ./rollup.config.js --format iife --file dist/announcekit.min.js"
},
"devDependencies": {
"rollup": "^1.32.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-vue": "^5.1.9",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"vue-runtime-helpers": "^1.1.2"
}
}