-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.83 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.83 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@waves/waves-transactions",
"version": "4.4.0",
"description": "Build and sign(multi-sign) transactions for Waves blockchain.",
"keywords": [
"waves",
"crypto",
"transactions",
"protocol",
"binary",
"cryptography",
"signature"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build-docs": "typedoc --options typedoc.config.cjs --entryPointStrategy resolve ./src/index.ts --out docs && touch docs/.nojekyll",
"build": "tsc",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "jest",
"prepublishOnly": "npm run build"
},
"files": [
"/dist",
"/src"
],
"author": {
"name": "wavesplatform"
},
"contributors": [
{
"name": "Sergey B",
"email": "siemarell@gmail.com"
},
{
"name": "Yuriy Naydenov",
"email": "ebceu44@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.0.0",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"typedoc": "^0.28.17",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/wavesplatform/waves-transactions.git"
},
"overrides": {
"glob": "^13.0.6",
"test-exclude": "^8.0.0"
},
"dependencies": {
"@waves/marshall": "^0.15.0-beta.1",
"@waves/protobuf-serialization": "^1.6.1",
"@waves/ts-lib-crypto": "^1.5.1",
"@waves/ts-types": "^1.3.1",
"axios": "^1.13.5",
"long": "^5.3.2",
"protobufjs": "^7.5.4"
}
}