-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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
49
50
51
52
53
54
55
{
"name": "react-kofi",
"version": "0.0.2",
"description": "Ko-fi buttons, modals, and react components built with Radix for React.js projects (unofficial)",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "rollup -c",
"build-dev": "rollup --config rollup-dev.config.mjs",
"prepublishOnly": "npm run build",
"watch": "rollup --config rollup-dev.config.mjs --watch",
"clean": "rm -rf node_modules",
"test": "echo \"Error: no test specified\" && exit 1",
"reinstall": "npm run clean && npm install"
},
"keywords": [
"ko-fi",
"donation",
"react",
"radix"
],
"author": "Graeme Fulton",
"license": "MIT",
"dependencies": {
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.x.x",
"@babel/preset-react": "^7.x.x",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"autoprefixer": "^10.4.19",
"babel-plugin-module-resolver": "^5.0.2",
"clean-css": "^5.3.3",
"cssnano": "^7.0.5",
"postcss": "^8.4.40",
"react-dom": "^18.3.1",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.4.6"
}
}