-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
100 lines (100 loc) · 2.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "next-export-optimize-images",
"version": "4.6.1",
"description": "Optimize images at build time with Next.js.",
"keywords": ["next.js", "static", "export", "image", "optimization"],
"homepage": "https://next-export-optimize-images.vercel.app",
"bugs": {
"url": "https://github.com/dc7290/next-export-optimize-images/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dc7290/next-export-optimize-images.git"
},
"license": "MIT",
"author": "dc7290 <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "bin/index.js",
"files": [
"dist",
"legacy",
"image.js",
"image.d.ts",
"picture.js",
"picture.d.ts",
"remote-image.js",
"remote-image.d.ts",
"remote-picture.js",
"remote-picture.d.ts"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup --dts",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "biome lint ./",
"format": "biome format --write ./",
"check:write": "biome check --write ./",
"lint-staged": "lint-staged",
"prepare": "husky",
"pretest": "npm run build && npm-run-all --sequential pretest:**",
"pretest:e2e": "cd __tests__/e2e && rimraf {.next,out} && next build && node cli.js",
"pretest:e2e-build": "cd __tests__/e2e-build && rimraf .next && next build && node cli.js",
"test": "jest",
"test:watch": "jest --watch",
"semantic-release": "SKIP_BY_SEMANTIC_RELEASE=true semantic-release",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{ts,tsx}": ["biome check --write"]
},
"dependencies": {
"ansi-colors": "^4.1.3",
"app-root-path": "^3.1.0",
"cli-progress": "^3.12.0",
"fs-extra": "^11.2.0",
"lodash.uniqwith": "^4.5.0",
"recursive-readdir": "^2.2.3",
"sharp": "^0.33.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tsconfig/strictest": "2.0.5",
"@types/app-root-path": "1.2.8",
"@types/cli-progress": "3.11.6",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.14",
"@types/lodash.uniqwith": "4.5.9",
"@types/node": "22.10.5",
"@types/react": "npm:types-react@rc",
"@types/recursive-readdir": "2.2.4",
"conventional-changelog-conventionalcommits": "6.1.0",
"git-cz": "4.9.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.3.0",
"next": "15.1.3",
"npm-run-all2": "7.0.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"rimraf": "6.0.1",
"semantic-release": "19.0.5",
"ts-jest": "29.2.5",
"tsup": "8.3.5",
"typescript": "5.7.2",
"webpack": "5.97.1"
},
"peerDependencies": {
"next": "14.x || 15.x",
"react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0",
"react-dom": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
},
"engines": {
"node": ">=18"
}
}