-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.17 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
{
"name": "ritual-tui",
"version": "0.2.8",
"description": "A TUI app for daily task logging and time tracking",
"type": "module",
"main": "dist/index.js",
"bin": {
"ritual": "./dist/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/suraniharsh/ritual-tui.git"
},
"homepage": "https://github.com/suraniharsh/ritual-tui",
"bugs": {
"url": "https://github.com/suraniharsh/ritual-tui/issues"
},
"scripts": {
"dev": "tsx src/index.tsx",
"build": "tsup src/index.tsx --format esm --clean",
"start": "node dist/index.js",
"prepublishOnly": "pnpm build",
"deploy": "node scripts/deploy.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"sonar": "dotenv -e .env -- sonar-scanner",
"sonar:export": "node scripts/export-sonar-issues.js",
"sonar:export:json": "node scripts/export-sonar-issues.js --format=json --output=sonar-issues.json",
"sonar:export:md": "node scripts/export-sonar-issues.js --format=markdown --output=sonar-issues.md",
"prepare": "husky"
},
"keywords": [
"tui",
"task-logging",
"time-tracking",
"cli"
],
"author": "suraniharsh <harshsurani00@gmail.com>",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"chalk": "^5.6.2",
"date-fns": "^4.1.0",
"ink": "^6.6.0",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/react": "^19.2.7",
"@types/uuid": "^11.0.0",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"dotenv-cli": "^11.0.0",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"sonar-scanner": "^3.1.0",
"tsup": "^8.5.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.16"
}
}