-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 KB
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
{
"name": "social-share-buttons",
"version": "0.1.1",
"description": "Modern, lightweight social sharing library with zero dependencies.",
"type": "module",
"main": "./dist/social-share-buttons.umd.js",
"module": "./dist/social-share-buttons.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/social-share-buttons.js",
"require": "./dist/social-share-buttons.umd.js"
},
"./styles": "./dist/social-share-buttons.css",
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE.md"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build && npm run copy:demo",
"copy:demo": "rm -rf demo/dist && cp -r dist demo/dist"
},
"repository": {
"type": "git",
"url": "https://github.com/ozdemirburak/social-share-buttons.git"
},
"devDependencies": {
"typescript": "^5.9.3",
"vite": "^7.1.10"
},
"keywords": [
"share",
"share-buttons",
"social-share",
"social-share-buttons",
"social-media",
"social-media-share-buttons",
"web-share"
],
"author": "Burak Özdemir (https://ozdemirburak.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ozdemirburak/social-share-buttons/issues"
},
"homepage": "https://socialsharebuttons.net"
}