-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "@myrotvorets/facex",
"version": "2.7.0",
"description": "FaceX interface",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build",
"pretest": "npm run lint",
"test": "exit 0",
"posttest": "npm run build"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js",
"dist/**/*.js.map"
],
"typings": "dist/index.d.ts",
"keywords": [],
"author": "Myrotvorets <support@myrotvorets.center> (https://myrotvorets.center/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"@types/node": "^22.0.0",
"eslint-formatter-gha": "^1.4.3",
"typescript": "^5.3.3"
},
"dependencies": {
"@myrotvorets/facex-base": "^2.3.1",
"@myrotvorets/facex-image-processor-sharp": "^1.2.1",
"@myrotvorets/facex-transport-fetch-h2": "^2.2.2",
"sharp": "^0.33.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets/facex.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/facex/issues"
},
"homepage": "https://github.com/myrotvorets/facex#readme",
"engines": {
"npm": ">=7"
}
}