-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.2 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.2 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
{
"name": "@milldr/crono",
"version": "0.2.0",
"description": "CLI for Cronometer automation via Kernel.sh",
"type": "module",
"bin": {
"crono": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"keywords": [
"cronometer",
"nutrition",
"cli",
"automation",
"kernel"
],
"repository": {
"type": "git",
"url": "https://github.com/milldr/crono"
},
"author": "Daniel Miller",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"@napi-rs/keyring": "^1.2.0",
"@onkernel/sdk": "^0.33.0",
"commander": "^12.0.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"eslint": "^8.56.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.55.0",
"vitest": "^1.2.0"
},
"lint-staged": {
"*": "prettier --check --ignore-unknown"
}
}