-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "@myrotvorets/facex-image-processor-sharp",
"version": "1.2.3",
"description": "sharp-based image processor for FaceX",
"main": "dist/lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"lint:fix": "eslint --fix .",
"test": "node --require=ts-node/register/transpile-only --experimental-test-module-mocks test-runner.ts",
"test:coverage": "c8 npm test",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"files": [
"dist/lib/*.d.ts",
"dist/lib/*.js",
"dist/lib/*.js.map"
],
"typings": "dist/lib/index.d.ts",
"keywords": [],
"author": "Myrotvorets <[email protected]> (https://myrotvorets.center/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.1",
"@myrotvorets/facex-base": "^2.3.2",
"@types/node": ">= 20.11.16",
"c8": "^10.1.3",
"eslint-formatter-gha": "^1.5.2",
"node-reporter-gha": "^2.0.4",
"node-reporter-sonarqube": "^1.0.1",
"sharp": "^0.33.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@myrotvorets/facex-base": "^1.0.1 || ^2.0.0",
"sharp": ">=0.25.0 <0.34.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets/facex-image-processor-sharp.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/facex-image-processor-sharp/issues"
},
"homepage": "https://github.com/myrotvorets/facex-image-processor-sharp#readme",
"engines": {
"npm": ">=7"
}
}