generated from AOSSIE-Org/Template-Repo
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.19 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@aossie/support-us-button",
"version": "1.0.0",
"description": "A customizable and flexible Support Us button component for integrating sponsorship and donation options into web applications.",
"keywords": [
"aossie",
"support",
"donation",
"sponsor",
"button",
"widget",
"open-source",
"react",
"react-component",
"react-widget",
"sponsorship",
"support-widget",
"buy-me-a-coffee",
"donation-widget",
"funding-widget",
"creator-support",
"tailwind",
"typescript",
"react-18",
"frontend",
"ui-component"
],
"homepage": "https://github.com/AOSSIE-Org/SupportUsButton#readme",
"bugs": {
"url": "https://github.com/AOSSIE-Org/SupportUsButton/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AOSSIE-Org/SupportUsButton.git"
},
"license": "GNU General Public License v3.0",
"author": "AOSSIE Organization",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@tailwindcss/postcss": "^4.2.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"tslib": "^2.8.1"
}
}