-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "get-palette",
"version": "0.1.2",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"module": "dist/main.mjs",
"description": "Get the dominant color or color palette from an image.",
"keywords": ["color", "palette", "sampling", "image", "picture"],
"homepage": "https://github.com/BlankParticle/get-palette",
"repository": {
"type": "git",
"url": "https://github.com/BlankParticle/get-palette"
},
"author": "BlankParticle",
"files": ["dist"],
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.js",
"types": "./dist/main.d.ts"
}
},
"license": "MIT",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"format": "biome format --write ./src",
"lint": "biome check ./src",
"fix": "biome check --apply ./src"
},
"dependencies": {
"jpeg-js": "^0.4.4",
"ndarray": "^1.0.19",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.1",
"@types/ndarray": "^1.0.14",
"@types/node": "^20.11.0",
"@types/pngjs": "^6.0.4",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@8.14.1"
}