-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.74 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
{
"name": "trim-image-data",
"version": "2.1.0",
"description": "Function for trimming surrounding pixels of an ImageData-instance.",
"author": "Daniel Grefberg <hello@danielgrefberg.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/duniul/trim-image-data.git"
},
"homepage": "https://github.com/duniul/trim-image-data#readme",
"bugs": {
"url": "https://github.com/duniul/trim-image-data/issues"
},
"packageManager": "pnpm@8.15.3",
"keywords": [
"image",
"image-data",
"image-editing",
"canvas",
"crop-image",
"trim-image"
],
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"prepublishOnly": "pnpm build",
"lint": "biome check",
"lint:apply": "biome check --apply",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"crop-image-data": "^1.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@canvas/image-data": "1.0.0",
"@changesets/cli": "2.27.1",
"@tsconfig/node16": "16.1.1",
"@types/sharp": "0.31.1",
"changesets-changelog-clean": "1.2.1",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "3.2.4",
"sharp": "0.33.2",
"tsup": "^8.0.2",
"typescript": "5.3.3",
"vitest": "^1.3.0"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts"
}