forked from polkawallet-io/bridge
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2.04 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
{
"name": "@interlay/bridge",
"version": "0.6.2",
"description": "polkawallet bridge sdk",
"main": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"build/*"
],
"contributors": [
{
"name": "Polkawallet developers",
"email": "[email protected]"
},
{
"name": "Interlay developers",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"engines": {
"yarn": "^1.10.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": "https://github.com/interlay/bridge.git",
"homepage": "https://github.com/interlay/bridge",
"scripts": {
"build": "tsc",
"test": "jest",
"test:ci": "jest --forceExit",
"lint": "polkadot-dev-run-lint",
"chopsticks-test:kintsugi": "ts-node scripts/kintsugi-chopsticks-test",
"chopsticks-test:interlay": "ts-node scripts/interlay-chopsticks-test",
"chopsticks-test:kusama-assethub": "ts-node scripts/kusama-chopsticks-assethub-test",
"chopsticks-test:polkadot-assethub": "ts-node scripts/polkadot-chopsticks-assethub-test"
},
"peerDependencies": {
"@polkadot/api": "^10"
},
"dependencies": {
"@acala-network/api": "^5.1.1",
"@acala-network/sdk": "^4.1.9-7",
"@acala-network/sdk-core": "^4.1.9-7",
"@polkadot/api": "^11.0.2",
"@polkadot/apps-config": "^0.143.2",
"@polkadot/types": "^11.0.2",
"axios": "^1.6.2",
"lodash": "^4.17.20"
},
"devDependencies": {
"@open-web3/dev-config": "^0.2.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.161",
"@types/node": "^22.5.4",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"resolutions": {
"@polkadot/api": "^11.0.2",
"@polkadot/types": "^11.0.2"
},
"versions": {
"git": "0.0.5-4",
"npm": "0.0.5-4"
},
"stableVersion": "0.0.5-4",
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
}
}