-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "vue-twitter-timeline",
"description": "A Vue3 component which allows you to easily embed twitter timelines.",
"version": "1.0.2",
"homepage": "https://github.com/bunesk/vue-twitter-timeline",
"author": "Bünyamin Eskiocak",
"license": "MIT",
"bugs": "https://github.com/bunesk/vue-twitter-timeline/issues/new",
"repository": {
"type": "git",
"url": "https://github.com/bunesk/vue-twitter-timeline"
},
"keywords": [
"vue",
"vue-3",
"vue-twitter-timeline",
"vue3-tweet",
"twitter-timeline",
"embed",
"twitter",
"twitter-widget",
"twitter-embed"
],
"files": [
"dist"
],
"main": "./dist/vue-twitter-timeline.umd.js",
"scripts": {
"start": "vite",
"build": "vite build",
"build-site": "vite build --config 'vite-site.config.js'",
"preview": "vite preview",
"update": "npm-check --skip-unused -u",
"release": "npm run build && standard-version && git push --follow-tags origin && npm publish"
},
"dependencies": {
"@vueuse/core": "^9.6.0",
"vue": "^3.2.45"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-vue": "^9.8.0",
"npm-check": "^6.0.1",
"prettier": "^2.8.1",
"standard-version": "^9.5.0",
"vite": "^4.0.0",
"vue-tsc": "^1.0.13"
},
"eslintConfig": {
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
]
}
}