-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 920 Bytes
/
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
{
"name": "borsher",
"version": "3.6.0",
"license": "MIT",
"description": "Borsh (de)serialization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"check": "tsc --noEmit",
"test": "jest",
"lint": "eslint '{src,test}/**/*.ts' '*.js' --fix",
"prettier": "prettier '{src,test}/**/*.ts' '*.js' --write --list-different",
"prepare": "husky"
},
"dependencies": {
"borsh": "^2.0.0",
"buffer": "^6.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.17.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}