-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 4.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@did-connect/react",
"version": "2.2.4",
"description": "Client side library to work with DID Connect by ArcBlock.",
"keywords": [
"react",
"arcblock",
"component"
],
"author": "wangshijun<[email protected]>",
"homepage": "https://github.com/ArcBlock/did-connect#readme",
"license": "Apache-2.0",
"main": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ArcBlock/did-connect.git"
},
"scripts": {
"dev": "blocklet dev",
"dev:child": "blocklet dev --component --app-did=z8ia1dodZ52VDmtfUkmUtDHpBjXcpqjrhyHfS --mount-point=/playground/react",
"lint": "eslint src stories",
"clean": "rm -rf lib",
"build": "npm run clean && npm run build:types && npm run build:code",
"build:code": "babel src --out-dir . --copy-files --no-copy-ignored --ignore 'src/**/*.stories.js','src/**/demo' --extensions .js,.jsx,.ts,.tsx",
"build:types": "tsc",
"watch": "babel src --out-dir . -w --copy-files --no-copy-ignored --ignore 'src/**/*.stories.js','src/**/demo' --extensions .js,.jsx,.ts,.tsx",
"precommit": "CI=1 yarn test",
"prepush": "CI=1 yarn test",
"prepublish": "npm run build",
"storybook:coverage": "test-storybook --coverage",
"storybook:clean": "rm -rf dist && mkdir dist",
"storybook:build": "npm run storybook:clean && NODE_ENV=production build-storybook --quiet --output-dir dist",
"storybook:start": "start-storybook -p $BLOCKLET_PORT",
"bundle": "npm run storybook:build && NODE_ENV=production blocklet bundle --zip --create-release --monorepo",
"deploy": "npm run bundle && blocklet deploy .blocklet/bundle",
"deploy:child": "npm run bundle && blocklet deploy .blocklet/bundle --app-did=z8ia1dodZ52VDmtfUkmUtDHpBjXcpqjrhyHfS --mount-point=/playground/react",
"upload": "npm run bundle && blocklet upload .blocklet/release/blocklet.json"
},
"bugs": {
"url": "https://github.com/ArcBlock/did-connect/issues"
},
"dependencies": {
"@arcblock/did-motif": "^1.1.13",
"@arcblock/icons": "^2.9.66",
"@arcblock/react-hooks": "^2.9.66",
"@arcblock/ux": "^2.9.66",
"@did-connect/state": "2.2.4",
"@did-connect/types": "2.2.4",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/lato": "^4.5.10",
"@fontsource/ubuntu-mono": "^4.5.11",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.10",
"axios": "^0.27.2",
"buffer": "^6.0.3",
"copy-to-clipboard": "^3.3.2",
"core-js": "^3.26.0",
"debug": "^4.3.4",
"dsbridge": "3.1.4",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"mdi-material-ui": "^7.5.0",
"prop-types": "^15.8.1",
"react-error-boundary": "^3.1.4",
"react-use": "^17.4.0",
"tweetnacl": "^1.0.3",
"tweetnacl-sealedbox-js": "^1.2.0",
"url-join": "^4.0.1",
"xstate": "^4.33.6"
},
"peerDependencies": {
"react": ">=18.1.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@arcblock/addon-storysource": "^2.9.66",
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@ocap/client": "^1.18.115",
"@ocap/util": "^1.18.115",
"@ocap/wallet": "^1.18.115",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-coverage": "^0.0.4",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/addon-storysource": "^6.5.13",
"@storybook/addons": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/test-runner": "^0.7.2",
"@types/jest": "^28.1.8",
"@types/node": "^18.11.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"object-hash": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-migrate": "^0.1.34",
"type-fest": "^3.1.0",
"typescript": "^4.8.4"
},
"gitHead": "e8a64a410287cda986b687d2edc9daf200185b99"
}