-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.3 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.3 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
91
92
93
94
95
{
"name": "doro-cli",
"version": "1.5.0",
"description": "Minimal terminal pomodoro timer with keyboard shortcuts and chiptune cues",
"files": [
"dist",
"!dist/__tests__",
"CHANGELOG.md",
"assets"
],
"repository": {
"type": "git",
"url": "https://github.com/dnim/doro-cli"
},
"homepage": "https://github.com/dnim/doro-cli#readme",
"bugs": {
"url": "https://github.com/dnim/doro-cli/issues"
},
"main": "dist/cli.js",
"bin": {
"doro": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"dev": "tsx src/cli.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:local": "eslint . --cache",
"lint:changed": "sh scripts/lint-changed.sh",
"typecheck": "tsc --noEmit",
"test:unit": "vitest run",
"test:unit:changed": "vitest run --changed",
"test:visual": "npm run build && playwright test",
"test:visual:update": "npm run build && playwright test --update-snapshots",
"release": "npm run clean && npm run build && release-it",
"prepare": "husky",
"test:unit:watch": "vitest"
},
"keywords": [
"pomodoro",
"cli",
"timer"
],
"license": "MIT",
"engines": {
"node": ">=22",
"npm": ">=10.5.0"
},
"dependencies": {
"blessed": "npm:@rook2pawn/neo-blessed@2.0.2",
"env-paths": "4.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.60.0",
"@types/blessed": "0.1.27",
"@types/node": "25.9.1",
"@vitest/coverage-v8": "4.1.7",
"@yao-pkg/pkg": "6.20.0",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"globals": "17.6.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"node-pty": "1.1.0",
"prettier": "3.8.3",
"release-it": "20.0.1",
"tsx": "4.22.3",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vitest": "4.1.7",
"xterm": "5.3.0"
},
"release-it": {
"hooks": {
"before:init": [
"npm run lint",
"npm run typecheck",
"npm run test:unit"
]
}
},
"browserslist": [
"maintained node versions"
],
"lint-staged": {
"{src,tests}/**/*.{ts,tsx,mts}": [
"eslint --fix",
"prettier --write"
]
}
}