-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 959 Bytes
/
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
{
"name": "@kellsworks/react-ion-icons",
"publishConfig": {
"registry": "https://npm.pkg.github.com/kellsworks"
},
"version": "1.0.4",
"description": "Package for adding ionicons to react (Both JavaScript & TypeScript)",
"scripts": {
"test": "test",
"rollup": "rollup -c"
},
"keywords": [
"react",
"ionicons"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"author": "Kelvin Chidothi",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.4.0",
"@types/react": "^18.0.17",
"@types/react-helmet": "^6.1.5",
"install": "^0.13.0",
"npm": "^8.18.0",
"react": "^18.2.0",
"react-helmet": "^6.1.0",
"rollup": "^2.78.1",
"rollup-plugin-dts": "^4.2.2",
"typescript": "^4.7.4"
},
"dependencies": {
"tslib": "^2.4.0"
}
}