-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 3.34 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "keyring-wallet",
"version": "0.1.0-alpha.2",
"description": "",
"main": "index.js",
"private": true,
"license": "Apache-2.0",
"engines": {
"node": ">=20.19.2 <21.0.0",
"yarn": "^4.9.2"
},
"packageManager": "yarn@4.9.2",
"workspaces": {
"packages": [
"app",
"packages/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/berkmancenter/keyring-wallet.git"
},
"bugs": {
"url": "https://github.com/berkmancenter/keyring-wallet/issues"
},
"homepage": "https://github.com/berkmancenter/keyring-wallet#readme",
"scripts": {
"preinstall": "node scripts/ensure-bifold-ready.js && npx husky install .husky",
"postinstall": "node scripts/fix-portal-symlinks.js",
"lint:app": "cd app && yarn lint",
"lint": "yarn lint:app",
"prettier:app": "cd app && yarn prettier",
"prettier": "yarn prettier:app",
"prettier:fix": "cd app && yarn prettier:fix",
"test": "cd app && yarn test",
"pre-commit-lint:app": "cd app && yarn pre-commit-lint",
"pre-commit-lint": "yarn pre-commit-lint:app",
"typecheck": "cd app && yarn typecheck"
},
"devDependencies": {
"@commitlint/cli": "~19.8.1",
"commitlint": "~19.8.1",
"husky": "~9.1.7",
"patch-package": "^8.0.1",
"sharp": "^0.34.5"
},
"resolutions": {
"@digitalcredentials/jsonld": "9.0.0",
"rdf-canonize": "5.0.0",
"tsyringe": "4.8.0",
"nanoid": "3.3.7",
"react": "18.3.1",
"react-native": "0.73.11",
"@types/react": "18.2.79",
"@credo-ts/anoncreds@npm:0.5.15": "patch:@credo-ts/anoncreds@npm%3A0.5.17#~/.yarn/patches/@credo-ts-anoncreds-npm-0.5.17-9f101d8e96.patch",
"@credo-ts/anoncreds@npm:0.5.17": "patch:@credo-ts/anoncreds@npm%3A0.5.17#~/.yarn/patches/@credo-ts-anoncreds-npm-0.5.17-9f101d8e96.patch",
"@credo-ts/core@npm:0.5.15": "patch:@credo-ts/core@npm%3A0.5.17#~/.yarn/patches/@credo-ts-core-npm-0.5.17-c528a69dd8.patch",
"@credo-ts/core@npm:0.5.17": "patch:@credo-ts/core@npm%3A0.5.17#~/.yarn/patches/@credo-ts-core-npm-0.5.17-c528a69dd8.patch",
"@credo-ts/indy-vdr@0npm:0.5.17": "patch:@credo-ts/indy-vdr@npm%3A0.5.17#~/.yarn/patches/@credo-ts-indy-vdr-npm-0.5.17-aa0b05041f.patch",
"@hyperledger/indy-vdr-shared@npm:0.2.2": "patch:@hyperledger/indy-vdr-shared@npm%3A0.2.2#~/.yarn/patches/@hyperledger-indy-vdr-shared-npm-0.2.2-b989282fc6.patch",
"@hyperledger/indy-vdr-react-native": "patch:@hyperledger/indy-vdr-react-native@npm%3A0.2.2#~/.yarn/patches/@hyperledger-indy-vdr-react-native-npm-0.2.2-627d424b96.patch",
"@animo-id/pex@npm:4.1.1-alpha.0": "patch:@animo-id/pex@npm%3A4.1.1-alpha.0#~/.yarn/patches/@animo-id-pex-npm-4.1.1-alpha.0-f29edfffa2.patch",
"@sphereon/pex@npm:5.0.0-unstable.24": "patch:@sphereon/pex@npm%3A5.0.0-unstable.24#~/.yarn/patches/@sphereon-pex-npm-5.0.0-unstable.24-921df3a8ac.patch",
"@bifold/core": "portal:bifold/packages/core",
"@bifold/oca": "portal:bifold/packages/oca",
"@bifold/react-native-attestation": "portal:bifold/packages/react-native-attestation",
"@bifold/remote-logs": "portal:bifold/packages/remote-logs",
"@bifold/verifier": "portal:bifold/packages/verifier",
"@bifold/vrc-contexts": "portal:bifold/packages/vrc-contexts"
},
"dependencies": {
"react-native-bcsc-core": "workspace:*"
}
}