-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "@koralabs/adahandle-sdk",
"version": "1.5.5",
"description": "SDK for ADA Handle",
"main": "index.js",
"types": "index.d.ts",
"url": "https://github.com/koralabs/adahandle-sdk",
"keywords": [
"cardano",
"ada handle",
"handle"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koralabs/adahandle-sdk.git"
},
"contributors": [
{
"name": "cjkoepke"
}
],
"scripts": {
"test": "jest",
"lint": "echo No linting configured",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --watchAll=false",
"build": "tsc && cp package.json ./lib/package.json",
"watch": "tsc --watch",
"npm:publish": "yarn build && cp package.json ./lib/package.json && (cd ./lib && npm publish)"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@blockfrost/openapi": "^0.1.59",
"@types/jest": "^28.1.6",
"jest": "^28.1.1",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"dependencies": {
"@koralabs/handles-public-api-interfaces": "^2.11.2",
"buffer": "^6.0.3",
"cross-fetch": "^4.0.0"
}
}