-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@aresrpg/sui-checkpoint-reader",
"version": "4.1.27",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint . && prettier . --check && npm run typecheck",
"test": "node --test",
"typecheck": "tsc --build",
"format": "prettier . --write && eslint . --fix",
"generate": "node ./src/bcs-generator.js",
"postversion": "git push --follow-tags"
},
"exports": {
"./reader": {
"import": "./src/index.js",
"types": "./types/index.d.ts"
},
"./snapshot": {
"import": "./src/snapshot/index.js",
"types": "./types/snapshot/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aresrpg/sui-checkpoint-reader.git"
},
"keywords": [],
"author": "sceat",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@logtail/pino": "^0.5.2",
"@mongodb-js/zstd": "^1.2.2",
"@mysten/bcs": "^1.1.0",
"chokidar": "^4.0.1",
"classic-level": "^1.4.1",
"pino": "^9.5.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "^6.6.0",
"husky": "^4.3.8",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}