-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1014 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1014 Bytes
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
{
"name": "namesky-sdk",
"version": "6.0.0",
"license": "MIT",
"description": "NameSky SDK",
"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' --fix",
"prettier": "prettier '{src,test}/**/*.ts' --write --list-different",
"prepare": "husky"
},
"dependencies": {
"@near-js/types": "=0.3.0",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"multi-transaction": "=12.0.0",
"near-api-js": "=5.0.0",
"sha256": "^0.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/sha256": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "5.4.3"
}
}