-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@uploadcare/nextjs-loader",
"version": "1.0.0",
"description": "Uploadcare custom image loader for Next.js",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"module": "./build/index.js",
"scripts": {
"lint": "eslint ./src/**/*.{ts,tsx}",
"format": "yarn prettier src/**/*.{ts,tsx} --write",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc --project tsconfig.publish.json && ts-add-module-exports",
"prepare": "husky install",
"release": "shipjs prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uploadcare/nextjs-loader.git"
},
"keywords": [
"nextjs",
"uploadcare",
"custom-loader",
"loader",
"images",
"cdn",
"optimization",
"image-optimization",
"performance-optimization"
],
"files": [
"build"
],
"author": "Konstantin Komelin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/uploadcare/nextjs-loader/issues"
},
"homepage": "https://github.com/uploadcare/nextjs-loader#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.3",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"babel-jest": "^29.3.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"next": "^13.0.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shipjs": "0.26.3",
"ts-add-module-exports": "^1.0.0",
"ts-node": "^10.2.1",
"typescript": "4.8.4",
"whatwg-fetch": "^3.6.2"
},
"peerDependencies": {
"next": ">=10.0.5",
"react": ">=17.0.0"
}
}