-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.08 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.08 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"scripts": {
"build": "zile",
"changeset:publish": "zile publish:prepare && changeset publish && zile publish:post",
"changeset:version": "changeset version",
"check": "biome check --fix --unsafe",
"check:types": "tsc",
"dev": "zile dev",
"postinstall": "pnpm dev",
"test": "vitest --testTimeout=10000"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@pimlico/alto": "0.0.15",
"@types/http-proxy": "^1.17.17",
"@types/node": "^24.10.2",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.15",
"testcontainers": "^11.10.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15",
"ws": "^8.18.3",
"zile": "^0.0.13"
},
"packageManager": "pnpm@10.25.0",
"[!start-pkg]": "",
"name": "prool",
"description": "HTTP testing instances for Ethereum",
"version": "0.2.4",
"type": "module",
"sideEffects": false,
"files": [
"src",
"dist"
],
"engines": {
"node": ">=22"
},
"exports": {
".": {
"src": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./testcontainers": {
"src": "./src/testcontainers/index.ts",
"types": "./dist/testcontainers/index.d.ts",
"default": "./dist/testcontainers/index.js"
}
},
"dependencies": {
"change-case": "5.4.4",
"eventemitter3": "^5.0.1",
"execa": "^9.1.0",
"get-port": "^7.1.0",
"http-proxy": "^1.18.1",
"tar": "7.2.0"
},
"peerDependencies": {
"@pimlico/alto": "*",
"testcontainers": ">=11.10.0"
},
"peerDependenciesMeta": {
"@pimlico/alto": {
"optional": true
},
"testcontainers": {
"optional": true
}
},
"license": "MIT",
"homepage": "https://wevm.dev",
"repository": "wevm/prool",
"authors": [
"awkweb",
"jxom"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/wevm"
}
],
"keywords": [],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts"
}