-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "@parity/host-api-test-sdk",
"version": "0.12.1",
"description": "Lightweight test host for Spektr product E2E testing — embeds dapps with auto-signing dev accounts, no Docker needed",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/paritytech/host-api-test-sdk.git"
},
"type": "module",
"main": "dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./playwright": {
"types": "./dist/playwright/index.d.ts",
"import": "./dist/playwright/index.js",
"require": "./dist/playwright.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build:bundle": "node build.mjs",
"build:tsc": "tsc",
"build": "pnpm run build:bundle && pnpm run build:tsc",
"clean": "rm -rf dist",
"test": "node --test test-exports-esm.mjs test-exports-cjs.cjs",
"test:integration": "node test/build-test-product.mjs && pnpm exec playwright test --config test/playwright.config.ts",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@playwright/test": ">=1.0.0"
},
"peerDependenciesMeta": {
"@playwright/test": {
"optional": true
}
},
"dependencies": {
"@novasamatech/host-api": "^0.9.1"
},
"devDependencies": {
"@novasamatech/host-api-wrapper": "^0.9.1",
"@novasamatech/host-container": "^0.9.1",
"@parity/truapi": "^0.6.0",
"@polkadot/keyring": "^14.0.0",
"@polkadot/types": "^16.0.0",
"@polkadot/util": "^14.0.0",
"@polkadot/util-crypto": "^14.0.0",
"@types/node": "^20",
"esbuild": "^0.25.0",
"neverthrow": "^8.0.0",
"polkadot-api": "^2.0.0",
"typescript": "^5"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}