-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.74 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
{
"name": "@bosonprotocol/core-sdk",
"version": "1.25.0-mvfw23.1",
"description": "Facilitates interaction with the contracts and subgraphs of the Boson Protocol",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"scripts": {
"dev": "tsc --watch --preserveWatchOutput ",
"lint": "eslint --ignore-path ../../.gitignore --ext .js,.ts .",
"lint:fix": "npm run lint -- --fix",
"build": "rimraf dist && tsc && tsc --build tsconfig.cjs.json",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf dist coverage .turbo node_modules",
"codegen": "graphql-codegen --config ./codegen.yml && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosonprotocol/core-components.git"
},
"author": "Boson Protocol",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bosonprotocol/core-components/issues"
},
"homepage": "https://github.com/bosonprotocol/core-components/tree/main/packages/contracts-sdk#readme",
"files": [
"dist/*",
"src/*"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@bosonprotocol/common": "^1.21.0-alpha.10",
"@ethersproject/abi": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/units": "^5.5.0",
"cross-fetch": "^3.1.5",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"mustache": "^4.2.0",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "^8.10.0",
"jest": "^27.5.1",
"nock": "^13.2.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}