-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"name": "abacus-cli",
"version": "0.3.0",
"description": "CLI tool for Abacus time tracking via Playwright browser automation",
"author": "Tim Petri",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wassertim/abacus-cli.git"
},
"homepage": "https://github.com/wassertim/abacus-cli#readme",
"bugs": {
"url": "https://github.com/wassertim/abacus-cli/issues"
},
"keywords": [
"abacus",
"time-tracking",
"playwright",
"cli",
"vaadin",
"automation"
],
"files": [
"dist"
],
"main": "dist/index.js",
"bin": {
"abacus": "dist/index.js"
},
"scripts": {
"postinstall": "npx patchright-core install chrome",
"build": "tsc",
"test": "vitest run --exclude dist",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js"
},
"dependencies": {
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
"ora": "^5.4.1",
"patchright-core": "^1.57.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0",
"vitest": "^4.0.18"
}
}