-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "@foxypool/chia-log-analyzer",
"version": "2.0.4",
"author": "Felix Brucker <contact@foxypool.io>",
"license": "GPL-3.0-or-later",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/foxypool/chia-log-analyzer.git"
},
"bugs": {
"url": "https://github.com/foxypool/chia-log-analyzer/issues"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts .",
"lint:fix": "pnpm lint --fix",
"update": "ncu -u"
},
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"bech32": "^2.0.0",
"dayjs": "^1.11.10",
"fastest-levenshtein": "^1.0.16"
},
"devDependencies": {
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"npm-check-updates": "^16.14.6",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}