-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "mochimo-mesh-api-client",
"version": "1.0.5",
"description": "A TypeScript client library for interacting with the Mochimo blockchain API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest",
"test:integration": "jest",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"peerDependencies": {
"crypto-js": "^4.2.0",
"mochimo-wots": "^1.2.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/crypto-js": "^4.2.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"crypto-js": "^4.2.0",
"jest": "^29.7.0",
"mochimo-wots": "git+https://github.com/adequatesystems/mochimo-wots.git#v1.2.8",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"keywords": [
"mochimo",
"blockchain",
"cryptocurrency",
"api",
"client"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wagleanuj/mochimo-mesh-api-client.git"
},
"bugs": {
"url": "https://github.com/wagleanuj/mochimo-mesh-api-client/issues"
},
"homepage": "https://github.com/wagleanuj/mochimo-mesh-api-client#readme"
}