-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "cquant",
"version": "0.1.5",
"description": "A fast and native image palette generator",
"main": "cquant.js",
"types": "./cquant.d.ts",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"test": "npm run predev && node ./test/test.js && node ./test/api-test.js && node ./test/perf.js && node ./script/build-deploy.js",
"tsc": "tsc --build",
"predev": "npm install image-palette image-pixels"
},
"keywords": [
"image-palette",
"color-quant",
"cquant",
"palette",
"quant",
"MMCQ"
],
"author": "xVanTuring",
"repository": {
"type": "git",
"url": "git://github.com/xVanTuring/cquant"
},
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^1.6.3",
"prebuild-install": "^5.3.0",
"sharp": "^0.22.1"
},
"devDependencies": {
"@types/node": "^10.14.4",
"typescript": "^3.4.3",
"async": "^2.6.2",
"prebuild": "^8.2.1",
"which": "^1.3.1"
},
"binary": {
"napi_versions": [
3,
4
]
},
"config": {
"runtime": "napi"
}
}