-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "@browserkit-dev/adapter-hackernews",
"version": "0.1.1",
"description": "Hacker News adapter for browserkit — top stories, new, ask, show, jobs",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"lint": "tsc --noEmit",
"prepublishOnly": "tsc"
},
"peerDependencies": {
"@browserkit-dev/core": ">=0.2.0"
},
"devDependencies": {
"@browserkit-dev/core": "^0.2.0",
"@types/node": "^22.13.14",
"patchright": "^1.51.1",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^3.0.9",
"zod": "^3.24.2"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/browserkit-dev/adapter-hackernews"
}
}