forked from paveli/react-payment-icons-inline
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 980 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 980 Bytes
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
{
"name": "react-pay-icons",
"version": "4.0.0",
"description": "Payment Icons for React applications",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./crypto": "./lib/crypto/index.js",
"./*": "./lib/*.js"
},
"scripts": {
"icons": "svgr --config-file svgr.config.js -- IconsSource && vite build && tsc",
"dev": "vite",
"build:gh-pages": "vite build --config vite.config.gh-pages.mjs"
},
"files": [
"lib"
],
"author": "Tommy Ljungberg",
"license": "MIT",
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0"
},
"repository": "https://github.com/twltwl/react-pay-icons",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@svgr/cli": "^8.1.0",
"@vitejs/plugin-react": "^4.7.0",
"babel-loader": "^9.2.1",
"glob": "^11.0.3",
"typescript": "^5.9.2",
"vite": "^7.1.2"
}
}