-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "qoi-img",
"version": "2.2.0",
"description": "Typescript bindings for QOI",
"repository": "https://github.com/rubikscraft/qoi-img",
"author": "Rubikscraft <contact@rubikscraft.nl>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/rubikscraft/qoi-img/issues"
},
"homepage": "https://github.com/rubikscraft/qoi-img",
"keywords": [
"qoi",
"qoi-img",
"images",
"image",
"quite ok image",
"encoding",
"decoding",
"backend",
"quite ok"
],
"readme": "README.md",
"main": "dist/index.js",
"private": false,
"type": "commonjs",
"scripts": {
"build-gyp": "node-gyp configure build",
"build-tsc": "tsc",
"build": "yarn run build-gyp && yarn run build-tsc",
"start": "node dist/index.js",
"build-start": "yarn build && yarn start",
"test": "jest"
},
"devDependencies": {
"@jorgeferrero/stream-to-buffer": "^2.0.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"bindings": "^1.5.0",
"node-gyp": "^10.2.0"
}
}