-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 855 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 855 Bytes
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
{
"name": "podkeeper",
"type": "module",
"version": "0.7.0",
"description": "",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js"
}
},
"main": "index.js",
"scripts": {
"test": "npx playwright test"
},
"repository": {
"type": "git",
"url": "https://github.com/flakiness/podkeeper.git"
},
"homepage": "https://github.com/flakiness/podkeeper",
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/ms": "^0.7.34",
"@types/node": "^22.8.5",
"@types/pg": "^8.11.10",
"@types/ws": "^8.5.12",
"esbuild": "^0.27.3",
"kubik": "^0.6.0",
"pg": "^8.13.1",
"typescript": "^5.6.3"
},
"dependencies": {
"ms": "^2.1.3",
"ws": "^8.18.0"
}
}