-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "@concordium/react-components",
"version": "0.6.1",
"description": "Utility library of React components for building dApps that interact with the Concordium blockchain.",
"author": "Concordium Software",
"license": "Apache-2.0",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"./dist",
"./src"
],
"repository": {
"type": "git",
"url": "https://github.com/Concordium/concordium-node-sdk-js/tree/main/packages/react-components"
},
"scripts": {
"lint": "eslint . --cache --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "yarn lint --fix",
"prettier": "prettier . --ignore-path ../../.gitignore --ignore-path ../../.prettierignore --ignore-path .gitignore",
"fmt": "yarn prettier --write",
"fmt-check": "yarn prettier --check",
"build": "tsc"
},
"dependencies": {
"@concordium/wallet-connectors": "workspace:^",
"@protobuf-ts/grpcweb-transport": "^2.9.4",
"buffer": "^6.0.3"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^18.11.17",
"@types/react": "^18",
"eslint": "8",
"prettier": "^3.2.5",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@concordium/web-sdk": ">= 7",
"react": "^18"
}
}