-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "@royalfig/share-button",
"description": "Adds a web-component share button to your website",
"version": "1.0.26",
"type": "module",
"private": false,
"files": [
"dist"
],
"module": "./dist/share-button.es.js",
"main": "./dist/share-button.umd.js",
"exports": {
".": {
"import": "./dist/share-button.es.js",
"require": "./dist/share-button.umd.js"
}
},
"license": "MIT",
"author": {
"name": "Ryan Feigenbaum",
"url": "https://ryanfeigenbaum.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/royalfig/share-button.git"
},
"scripts": {
"dev": "vite",
"test": "biome lint ./src",
"build": "tsc && vite build",
"preview": "vite preview",
"prerelease": "git commit -am 'publish' && npm version patch && git push && git push --tags"
},
"devDependencies": {
"@biomejs/biome": "1.8.0",
"stylelint": "^16.6.1",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1"
},
"publishConfig": {
"access": "public"
}
}