-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 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
{
"name": "cashscript",
"version": "0.11.0-next.0",
"description": "Easily write and interact with Bitcoin Cash contracts",
"keywords": [
"bitcoin cash",
"cashscript",
"sdk",
"smart contracts"
],
"homepage": "https://cashscript.org",
"bugs": {
"url": "https://github.com/CashScript/cashscript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CashScript/cashscript.git"
},
"license": "MIT",
"author": "Rosco Kalis <roscokalis@gmail.com>",
"contributors": [
"Gabriel Cardona <gabriel@bitcoin.com>"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"generate:bchd-grpc": "cd ./src/network/BchdGrpcNetworkProvider && mkdir -p generated && protoc --ts_out ./generated --proto_path . bchrpc.proto && sed -i 's/bchrpc\";/bchrpc.js\";/' ./generated/bchrpc.client.ts",
"build": "yarn clean && yarn compile",
"build:test": "yarn clean:test && yarn compile:test",
"clean": "rm -rf ./dist",
"clean:test": "rm -rf ./dist-test",
"compile": "tsc -p tsconfig.build.json",
"compile:test": "tsc -p tsconfig.test.json",
"lint": "eslint . --ext .ts --ignore-path ../../.eslintignore",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"pretest": "yarn build:test",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest"
},
"dependencies": {
"@bitauth/libauth": "^3.1.0-next.2",
"@cashscript/utils": "^0.11.0-next.0",
"@mr-zwets/bchn-api-wrapper": "^1.0.1",
"@protobuf-ts/grpcweb-transport": "^2.9.4",
"delay": "^6.0.0",
"electrum-cash": "^2.0.10",
"fast-deep-equal": "^3.1.3",
"pako": "^2.1.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@protobuf-ts/plugin": "^2.9.4",
"@psf/bch-js": "^6.8.0",
"@types/pako": "^2.0.3",
"@types/semver": "^7.5.8",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"typescript": "^5.7.3"
},
"gitHead": "bf02a4b641d5d03c035d052247a545109c17b708"
}