-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 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
{
"name": "lunch-money-cli",
"version": "2.1.2",
"description": "CLI for Lunch Money personal finance management",
"type": "module",
"bin": {
"lm": "./bin/run.js"
},
"exports": "./dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"bin",
"oclif.manifest.json",
"CHANGELOG.md"
],
"oclif": {
"bin": "lm",
"dirname": "lunch-money-cli",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"repositoryPrefix": "https://github.com/mhriemers/lunch-money-cli/blob/lunch-money-cli-v<%- version %>/packages/cli/<%- commandPath %>"
},
"scripts": {
"build": "shx rm -rf dist && tsc",
"dev": "tsx bin/dev.js",
"lint": "eslint",
"manifest": "oclif manifest",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "npm run build && npm run manifest && npm run readme",
"readme": "oclif readme && prettier --write README.md",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhriemers/lunch-money-cli.git",
"directory": "packages/cli"
},
"keywords": [
"lunch-money",
"cli",
"finance"
],
"author": "Martijn Riemers",
"license": "MIT",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/mhriemers/lunch-money-cli/issues"
},
"homepage": "https://github.com/mhriemers/lunch-money-cli/tree/main/packages/cli#readme",
"dependencies": {
"@lunch-money/lunch-money-js-v2": "^2.9.0",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"lunch-money-cli-core": "^2.1.1"
},
"devDependencies": {
"@oclif/test": "^4.1.17",
"@types/mocha": "^10",
"@types/node": "^25.5.0",
"chai": "^6",
"mocha": "^11",
"oclif": "^4",
"shx": "^0.4.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}