-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "@farbenmeer/next-image-autosize",
"version": "1.0.4",
"description": "A wrapper around next/image that automatically sets width and height.",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/* && prettier -c src",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farbenmeer/next-image-autosize.git"
},
"author": "farbenmeer GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/farbenmeer/next-image-autosize/issues"
},
"homepage": "https://github.com/farbenmeer/next-image-autosize#readme",
"peerDependencies": {
"next": "^14.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/react": "18.3.4",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.0",
"next": "^14.0.0",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"semantic-release": "^24.0.0",
"typescript": "^5.0.0"
},
"dependencies": {}
}