-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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": "@myrotvorets/facex-base",
"version": "2.3.4",
"description": "FaceX interface - base building blocks",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"lint:fix": "eslint --fix .",
"pretest": "npm run lint",
"test": "jest",
"prepare": "npm run build"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"!dist/test/"
],
"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/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"eslint-formatter-gha": "^1.4.3",
"jest": "^29.7.0",
"jest-github-actions-reporter": "^1.0.3",
"jest-mock": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@myrotvorets/buffer-stream": "^1.2.0",
"debug": "^4.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets/facex-base.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/facex-base/issues"
},
"homepage": "https://github.com/myrotvorets/facex-base#readme"
}