-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.64 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
{
"name": "progressive-share-button",
"version": "1.0.3",
"description": "A web componet that creates a OS-native share button.",
"files": [
"dist"
],
"main": "./dist/progressive-share-button.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/johnfmorton/progressive-share-button"
},
"module": "./dist/progressive-share-button.es.js",
"unpkg": "./dist/progressive-share-button.umd.js",
"types": "./dist/progressive-share-button.d.ts",
"exports": {
".": {
"import": "./dist/progressive-share-button.es.js",
"require": "./dist/progressive-share-button.umd.js"
}
},
"scripts": {
"clean": "rm -rf dist es demo",
"dev": "vite --host 0.0.0.0 --port 8888",
"vite-build": "vite build --config vite.demo.config.js",
"build": "vite build --config vite.demo.config.js && vite build && tsc lib/progressive-share-button.ts --declaration --emitDeclarationOnly --outFile dist/progressive-share-button.d.ts",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"share",
"button",
"progressive",
"web-components",
"web-share-api"
],
"author": "John F. Morton <[email protected]> (https://supergeekery.com)",
"license": "MIT",
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.3",
"vite-plugin-banner": "^0.7.0"
}
}