-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.51 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.51 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
{
"name": "@imagekit/react",
"version": "5.0.2",
"description": "React SDK for ImageKit.io which implements client-side upload and URL generation for use inside a react application.",
"scripts": {
"build:js": "rollup -c",
"build-dev:js": "rollup -c --watch",
"build:types": "tsc --emitDeclarationOnly",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "rm -rf dist*; npm run build:types && npm run build:js"
},
"repository": {
"type": "git",
"url": "https://github.com/imagekit-developer/imagekit-react"
},
"main": "dist/imagekitio-react.js",
"module": "dist/imagekitio-react.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "ImageKit",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.12.13",
"@types/react": "^18.3.3",
"rollup": "^2.28.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@imagekit/javascript": "^5.1.0"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}