-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 loc) · 2.21 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
{
"name": "@substrate/asset-transfer-api",
"version": "0.4.5",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "substrate-exec-rimraf ./lib && substrate-exec-tsc",
"build:scripts": "substrate-exec-rimraf scripts/build/ && substrate-exec-tsc --project scripts/tsconfig.json",
"build:examples": "substrate-exec-rimraf examples/build/ && substrate-exec-tsc --project examples/tsconfig.json",
"build:e2e": "substrate-exec-rimraf e2e-tests/build/ && substrate-exec-tsc --project e2e-tests/tsconfig.json",
"start": "node ./lib/index.js",
"lint": "substrate-dev-run-lint",
"lint:fix": "substrate-dev-run-lint --fix",
"docs": "typedoc",
"deploy": "yarn build && npm publish",
"test:e2e": "vitest --project e2e",
"test:integration": "vitest --project integration",
"test:unit": "vitest --project unit",
"test": "vitest"
},
"engines": {
"node": ">=18.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/asset-transfer-api.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/paritytech/asset-transfer-api/issues"
},
"homepage": "https://github.com/paritytech/asset-transfer-api#readme",
"packageManager": "[email protected]",
"devDependencies": {
"@substrate/dev": "^0.9.0",
"@types/cli-progress": "^3",
"ansi-colors": "^4.1.3",
"chalk": "5.4.1",
"cli-progress": "^3.12.0",
"typedoc": "^0.27.5",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-theme-hierarchy": "^5.0.3",
"vitest": "^2.1.8"
},
"dependencies": {
"@acala-network/chopsticks-core": "^1.0.1",
"@acala-network/chopsticks-testing": "^1.0.1",
"@polkadot/api": "^15.0.2",
"@polkadot/api-augment": "^15.0.2",
"@polkadot/types": "^15.0.2",
"@polkadot/types-codec": "^15.0.2",
"@polkadot/util": "^13.2.3",
"@polkadot/util-crypto": "^13.2.3",
"@substrate/asset-transfer-api-registry": "^0.2.24"
},
"resolutions": {
"@polkadot/api": "^15.0.2",
"@polkadot/types-create": "15.0.2",
"@polkadot/rpc-provider": "15.0.2",
"@polkadot/api-augment": "^15.0.2",
"@polkadot/types": "^15.0.2",
"@polkadot/types-codec": "15.0.2",
"@polkadot/util-crypto": "13.2.3",
"@polkadot/util": "13.2.3",
"@polkadot/keyring": "13.2.3"
}
}