-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "@meshsdk/provider",
"version": "1.9.0-beta.100",
"description": "Blockchain data providers - https://meshjs.dev/providers",
"main": "./dist/index.cjs",
"browser": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**"
],
"scripts": {
"build:docs": "typedoc src/index.ts --json ../../apps/docs/src/data/mesh-providers.json",
"build:mesh": "tsup src/index.ts --format esm,cjs --dts",
"clean": "rm -rf .turbo && rm -rf dist && rm -rf node_modules",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"format": "prettier --check . --ignore-path ../../.gitignore",
"pack": "npm pack --pack-destination=./dist",
"test": "jest"
},
"devDependencies": {
"@meshsdk/core": "^1.9.0-beta.100",
"@types/jest": "^29.5.14",
"@types/ws": "^8.5.13",
"dotenv": "^17.3.1",
"jest": "^29.7.0",
"jest-util": "^29.7.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@meshsdk/common": "1.9.0-beta.100",
"@meshsdk/core-cst": "1.9.0-beta.100",
"@utxorpc/sdk": "^0.6.7",
"@utxorpc/spec": "^0.16.0",
"axios": "^1.7.2",
"cbor": "^10.0.9"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"keywords": [
"cardano",
"ada",
"web3",
"blockchain",
"sdk"
]
}