-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "webwisp",
"private": true,
"description": "A web agent for automatic end-to-end testing of websites.",
"license": "(MIT OR Apache-2.0)",
"main": "src/index.ts",
"author": {
"name": "Brewen Couaran",
"email": "brewcoua@brewen.dev",
"url": "https://brewen.dev"
},
"repository": {
"type": "git",
"url": "git+ssh@github.com:brewcoua/webwisp.git"
},
"homepage": "https://github.com/brewcoua/webwisp#readme",
"bugs": {
"url": "https://github.com/brewcoua/webwisp/issues",
"email": "contact@brewen.dev"
},
"engines": {
"node": ">=20.14.0",
"npm": ">=10.5.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^18.19.36",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"workspaces": [
"packages/orchestrator",
"packages/worker",
"packages/client"
]
}