-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "thmclrx",
"version": "2.0.2",
"description": "A theme color extractor module for Node.js.",
"main": "index.js",
"typings": "index.d.ts",
"dependencies": {
"nan": "^2.15.0",
"pixel-getter": "^0.0.5"
},
"devDependencies": {
"@artus/tsconfig": "^0.0.1",
"@types/node": "^17.0.21",
"clang-format": "^1.6.0",
"eslint": "^8.11.0",
"eslint-config-egg": "^11.0.1"
},
"scripts": {
"clang-format": "./tools/clang_format.js --style=file -i ./src/*.cc ./src/*.h",
"cpplint": "./deps/cpplint/cpplint.py src/*.*",
"generate_compile_commands": "node-gyp -- configure -f=gyp.generator.compile_commands_json.py && mv Release/compile_commands.json compile_commands.json && rm -rf Release && rm -rf Debug",
"install": "node-gyp rebuild",
"postinstall": "rm -f package-lock.json",
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/XadillaX/thmclrx.git"
},
"keywords": [
"theme color",
"color",
"image",
"jpg",
"png",
"gif",
"octree",
"extractor",
"color extractor",
"pixel"
],
"files": [
"deps/byakuren",
"!deps/byakuren/third-party/xmempool/tools",
"!deps/byakuren/.git",
"lib",
"src",
"binding.gyp",
"index.d.ts",
"index.js",
"logo.svg",
"tsconfig.json"
],
"author": "XadillaX <[email protected]>",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/XadillaX/thmclrx/issues"
},
"homepage": "https://github.com/XadillaX/thmclrx"
}