shareon-pulsanti-condivisio.../package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

92 lines
2.3 KiB
JSON
Raw Normal View History

2020-03-25 16:32:25 +01:00
{
"name": "shareon",
2023-01-23 06:01:17 +01:00
"version": "2.0.1",
2020-06-26 17:04:15 +02:00
"description": "Lightweight, stylish and ethical share buttons for popular social networks",
"license": "MIT",
2020-03-26 22:01:29 +01:00
"homepage": "https://shareon.js.org",
2020-06-26 17:04:15 +02:00
"keywords": [
"share buttons",
"sharing",
"social networks"
],
2020-03-25 16:48:11 +01:00
"repository": {
"type": "git",
2023-01-23 06:06:31 +01:00
"url": "https://github.com/kytta/shareon.git"
2020-03-25 16:48:11 +01:00
},
"bugs": {
2023-01-23 06:06:31 +01:00
"url": "https://github.com/kytta/shareon/issues"
2020-03-25 16:48:11 +01:00
},
2020-06-26 17:04:15 +02:00
"author": {
"name": "Nikita Karamov",
"email": "me@kytta.dev",
2022-02-11 17:07:51 +01:00
"url": "https://www.kytta.dev/"
2020-06-26 17:04:15 +02:00
},
2022-02-11 17:10:01 +01:00
"funding": [
"https://github.com/sponsors/kytta/",
"https://liberapay.com/kytta",
"https://www.paypal.com/paypalme/NickKaramoff"
],
2023-01-25 18:14:18 +01:00
"type": "module",
2022-02-10 21:51:37 +01:00
"main": "./dist/shareon.umd.js",
"unpkg": "./dist/shareon.iife.js",
"jsdelivr": "./dist/shareon.iife.js",
"module": "./dist/shareon.es.js",
"exports": {
2022-02-10 21:51:37 +01:00
".": {
"import": "./dist/shareon.es.js",
"require": "./dist/shareon.umd.js"
},
"./css": "./dist/shareon.min.css"
2020-07-23 19:18:19 +02:00
},
2020-06-26 17:04:15 +02:00
"files": [
2020-07-26 14:17:16 +02:00
"dist"
2020-06-26 17:04:15 +02:00
],
2020-03-25 17:44:11 +01:00
"scripts": {
2022-02-10 21:44:53 +01:00
"build": "pnpm run build:js && pnpm run build:css",
"build:js": "vite build",
"build:css": "postcss src/shareon.css -o dist/shareon.min.css --map",
"dev": "vite",
2022-02-10 22:20:18 +01:00
"lint": "prettier --check . && eslint .",
2021-01-16 22:10:33 +01:00
"size": "size-limit",
"test": "pnpm run lint && pnpm run build && pnpm run size",
2022-02-11 14:49:03 +01:00
"postversion": "pnpm run build",
"prepublishOnly": "rm -rf ./package && clean-publish",
"postpublish": "rm -rf ./package"
2020-03-25 17:44:11 +01:00
},
"devDependencies": {
2022-11-16 10:45:17 +01:00
"@size-limit/preset-small-lib": "^8.1.0",
"autoprefixer": "^10.4.13",
"clean-publish": "^4.0.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unicorn": "^44.0.2",
"postcss": "^8.4.19",
"postcss-banner": "^4.0.1",
2022-11-16 10:45:17 +01:00
"postcss-calc": "^8.2.4",
"postcss-cli": "^10.0.0",
"postcss-css-variables": "^0.18.0",
2022-11-16 10:45:17 +01:00
"postcss-csso": "^6.0.1",
"prettier": "^2.7.1",
"size-limit": "^8.1.0",
2023-01-25 18:19:33 +01:00
"vite": "^4.0.4"
2020-03-25 22:09:35 +01:00
},
2022-11-16 10:40:27 +01:00
"browserslist": "> 0.3%, last 2 versions, Firefox ESR, not dead",
2020-03-25 22:09:35 +01:00
"size-limit": [
2020-07-30 12:09:39 +02:00
{
"limit": "7 KB",
2022-02-02 15:08:38 +01:00
"path": "./dist/shareon.min.css"
2020-07-30 12:09:39 +02:00
},
2020-03-25 22:09:35 +01:00
{
"limit": "1 KB",
2022-02-10 21:51:37 +01:00
"path": "./dist/shareon.es.js"
2020-03-25 22:09:35 +01:00
}
2022-02-11 14:49:03 +01:00
],
"publishConfig": {
"directory": "package"
},
"clean-publish": {
"withoutPublish": true,
"tempDir": "package"
}
2020-03-25 16:32:25 +01:00
}