-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 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
{
"name": "salat",
"version": "5.0.2",
"imports": {
"#*": "./dist/*.js"
},
"description": "Daily Moroccan prayers time, right in your console, at the tip of your fingers",
"homepage": "https://kafiln.github.io/salat-cli/",
"main": "dist/app.js",
"bin": {
"salat": "dist/app.js"
},
"type": "module",
"files": [
"dist"
],
"dependencies": {
"@tanstack/react-query": "^5.90.21",
"commander": "^14.0.3",
"date-fns": "^4.1.0",
"ink": "^6.6.0",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.4"
},
"scripts": {
"dev": "tsc && node dist/app.js",
"build": "tsc && chmod +x dist/app.js",
"start": "node dist/app.js",
"prestart": "npm run build",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:ci": "vitest run --exclude tests/**",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"prayers",
"morocco",
"prayers time",
"salat"
],
"author": {
"name": "Kafil NASDAMI",
"email": "kafil.nasdami@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.2.1",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.18",
"ink-testing-library": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}