-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "awesome-social-button",
"private": false,
"description": "Easy to use social media button collection with VueJS intregation.",
"version": "0.3.5",
"license": "MIT",
"author": "LogicSpark <[email protected]>",
"homepage": "https://logicspark.com",
"url": "https://github.com/logicspark/awesome-social-button",
"repository": {
"type": "git",
"url": "https://github.com/logicspark/awesome-social-button.git"
},
"bugs": {
"url": "https://github.com/logicspark/awesome-social-button/issues"
},
"keywords": [
"awesome button",
"button",
"vuejs",
"vue",
"vue3"
],
"type": "module",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"main": "./dist/awesome-social-button.umd.js",
"module": "./dist/awesome-social-button.es.js",
"exports": {
".": {
"import": "./dist/awesome-social-button.es.js",
"require": "./dist/awesome-social-button.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly && mv dist/components dist/types",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"vite-plugin-css-injected-by-js": "^3.1.0",
"vue": "^3.2.47"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/test-utils": "^2.3.2",
"jsdom": "^21.1.1",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vitest": "^0.30.1",
"vue-tsc": "^1.2.0"
},
"engines": {
"node": ">=18 <19"
}
}