-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@imagekit/next",
"version": "2.1.5",
"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-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": "git+https://github.com/imagekit-developer/imagekit-next.git"
},
"exports": {
".": {
"types": "./dist/client/types/index.d.ts",
"main": "./dist/client/index.js",
"module": "./dist/client/index-esm.js"
},
"./server": {
"types": "./dist/server/types/server/index.d.ts",
"main": "./dist/server/index.js",
"module": "./dist/server/index-esm.js"
}
},
"main": "./dist/client/index.js",
"types": "./dist/client/types/index.d.ts",
"files": [
"dist"
],
"keywords": [],
"author": "ImageKit",
"license": "MIT",
"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",
"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": "^5.1.0"
},
"peerDependencies": {
"next": ">= 13"
}
}