This repository was archived by the owner on Aug 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.59 KB
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
64
{
"name": "@progressive-victory/logger",
"version": "1.0.3",
"repository": "git@github.com:Progressive-Victory/Logger.git",
"author": "Isabella <okami@progress.win>",
"license": "MIT",
"scripts": {
"build": "swc ./src --out-dir dist && tsc --emitDeclarationOnly",
"lint": "prettier --check . && eslint . --ext .ts",
"format": "prettier --write . && eslint --fix --format=pretty src __tests__",
"test": "jest --config jest.config.js",
"run": "yarn build && node dist/index.js",
"prepublish": "yarn build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.93",
"dotenv": "^16.3.1",
"fastify": "^4.22.1",
"isomorphic-fetch": "^3.0.0",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@babel/preset-es2016": "^7.0.0-beta.53",
"@babel/preset-typescript": "^7.22.11",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"babel-jest": "^29.6.4",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}