-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "@trilitech/tezos-connect",
"version": "1.0.0",
"description": "The tezos-connect helps developers to build dApps and wallets for Tezos with a well-defined, standard JSDON RPC interface.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src/types"
],
"tsd": {
"directory": "test"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepare": "echo 'Running prepare script for tezos-connect...' && yarn build",
"prettier": "prettier --write 'src/*'",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"lint-ci": "eslint 'src/**/*.ts' -f json -o lintReport.json || true",
"test": "jest",
"type-test": "tsd"
},
"keywords": [
"tezos",
"tezos-connect",
"crypto",
"blockchain",
"tezos",
"decentralized",
"dapp",
"wallet"
],
"author": "Trilitech TriliTech <[email protected]>> (https://trili.tech)",
"license": "MIT",
"homepage": "https://trili.tech",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsd": "^0.31.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@airgap/beacon-sdk": "^4.2.2",
"@taquito/rpc": "^20.0.1",
"@taquito/signer": "^20.0.1",
"@taquito/taquito": "^20.0.1",
"bufferutil": "^4.0.8",
"encoding": "^0.1.13",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"utf-8-validate": "^6.0.4"
}
}