-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "pixel-scale",
"version": "2.0.1",
"description": "Get the pixel scale of an image, or scale it up or down without quality loss. Useful for pixel art!",
"author": "Daniel Grefberg <hello@danielgrefberg.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/duniul/pixel-scale.git"
},
"homepage": "https://github.com/duniul/pixel-scale#readme",
"bugs": {
"url": "https://github.com/duniul/pixel-scale/issues"
},
"packageManager": "pnpm@9.1.0",
"keywords": [
"image",
"image-data",
"image-editing",
"image-resize",
"pixel-art",
"canvas"
],
"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.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"prepublishOnly": "pnpm build",
"lint": "biome check src",
"lint:fix": "biome check --apply src",
"version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@canvas/image-data": "1.0.0",
"@changesets/cli": "^2.27.1",
"@tsconfig/node14": "^14.1.2",
"@types/sharp": "^0.31.1",
"changesets-changelog-clean": "^1.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sharp": "0.33.3",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}