forked from fleet-sdk/fleet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "@fleet-sdk/mock-chain",
"version": "0.2.2",
"description": "Mock chain for Ergo Smart Contracts testing.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js"
},
"sideEffects": false,
"repository": "fleet-sdk/fleet",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"ergo",
"blockchain",
"transactions",
"serialization",
"tests"
],
"scripts": {
"build": "tsup --config ../../tsup.config.ts"
},
"dependencies": {
"@fleet-sdk/common": "workspace:^",
"@fleet-sdk/core": "workspace:^",
"@fleet-sdk/wallet": "workspace:^",
"@fleet-sdk/crypto": "workspace:^",
"@fleet-sdk/serializer": "workspace:^",
"diff": "^5.1.0",
"ergo-lib-wasm-nodejs": "^0.24.0",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=10"
},
"files": [
"src",
"dist",
"!**/*.spec.*",
"!**/*.json",
"!tests",
"CHANGELOG.md",
"LICENSE",
"README.md"
]
}