forked from josip/node-colour-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 928 Bytes
/
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
{
"name": "colour-extractor-buffered",
"description": "Extract colour palettes from images",
"version": "2.0.0",
"homepage": "http://github.com/roteklaue/node-colour-extractor",
"repository": {
"type": "git",
"url": "git://github.com/roteklaue/node-colour-extractor.git"
},
"author": "roteKlaue",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "colour-extractor-buffered",
"triples": {}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.18.2",
"@types/node": "^20.12.8",
"ava": "^6.0.1"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"universal": "napi universal",
"version": "napi version"
}
}