-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "dont-crop",
"version": "0.2.0",
"description": "A library to fit gradients to images and extract it's dominant colors to help you avoid cropping images.",
"main": "./dist/cjs/lib.js",
"module": "./dist/mjs/lib.js",
"types": "./dist/mjs/lib.d.ts",
"exports": {
"import": "./dist/mjs/lib.js",
"require": "./dist/cjs/lib.js"
},
"files": [
"dist"
],
"homepage": "https://29a.ch/sandbox/2021/dont-crop/",
"sideEffects": false,
"scripts": {
"start": "webpack serve",
"build": "webpack build --env production",
"docs": "typedoc --out public/docs src/lib.ts && cp -r docs public/docs/",
"lint": "eslint",
"watch": "jest --watchAll --detectOpenHandles",
"test": "jest",
"prepare": "scripts/prepare.sh",
"endToEndTest": "./tests/endToEndTest.sh",
"benchmark": "ts-node scripts/benchmark.ts"
},
"author": "Jonas Wagner",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/benchmark": "^2.1.5",
"@types/jest": "^29.5.12",
"@types/puppeteer": "^5.4.7",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/serve-static": "^1.15.7",
"@types/sharp": "^0.31.1",
"benchmark": "^2.1.4",
"canvas": "^2.11.2",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"puppeteer": "^22.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"serve-static": "^1.15.0",
"sharp": "^0.33.4",
"style-loader": "^4.0.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}