-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.7 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
62
63
{
"name": "@jimp-native/monorepo",
"version": "0.1.0",
"description": "Speed up Jimp operations by using native C++ code where it matters.",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.ts,.tsx '**/*.{js,ts}'",
"build": "lerna run build",
"test": "jest --config ./jest.config.js ./"
},
"keywords": [
"image processing",
"native",
"jimp",
"images",
"c++",
"resize",
"scale",
"blit",
"composite",
"rotate"
],
"author": "Sjoerd Dal",
"license": "MIT",
"dependencies": {
"jimp": "0.22.7",
"node-addon-api": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.5.0",
"@jimp/core": "^0.22.7",
"@jimp/plugin-blit": "^0.22.7",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-source-map-support": "^2.2.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"draftlog": "^1.0.13",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"lerna": "^6.4.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"homepage": "https://github.com/sjoerd108/jimp-native#readme",
"repository": {
"type": "git",
"url": "https://github.com/sjoerd108/jimp-native.git"
}
}