-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.96 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
56
57
58
59
60
61
62
{
"name": "imagekitio-next",
"version": "1.0.1",
"description": "Next.js SDK for ImageKit.io which implements client-side upload and URL generation for use inside a next application.",
"scripts": {
"build:js": "rollup -c",
"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",
"test:e2e": "cypress open",
"serve:app-router": "cd example/app-router && npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imagekit-developer/imagekit-next.git"
},
"main": "dist/imagekit-next.js",
"module": "dist/imagekit-next.esm.js",
"browser": "dist/imagekit-next.umd.js",
"browser:min": "dist/imagekit-next.umd.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"keywords": [],
"author": "ImageKit",
"license": "ISC",
"bugs": {
"url": "https://github.com/imagekit-developer/imagekit-next/issues"
},
"homepage": "https://github.com/imagekit-developer/imagekit-next#readme",
"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",
"cypress": "^13.11.0",
"cypress-file-upload": "^5.0.8",
"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",
"typescript": "^5.4.5"
},
"dependencies": {
"imagekit-javascript": "^3.0.2"
},
"engines": {
"node": ">=12"
},
"peerDependencies": {
"next": "^12 || ^13 || ^14 || ^15",
"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"
}
}