-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "lunch-money-cli-core",
"version": "2.1.1",
"description": "Core library for lunch-money-cli plugins: base command, config, formatters, and API client utilities",
"type": "module",
"exports": "./dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "shx rm -rf dist && tsc",
"lint": "eslint",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhriemers/lunch-money-cli.git",
"directory": "packages/cli-core"
},
"keywords": [
"lunch-money",
"cli",
"core",
"plugin"
],
"author": "Martijn Riemers",
"license": "MIT",
"bugs": {
"url": "https://github.com/mhriemers/lunch-money-cli/issues"
},
"homepage": "https://github.com/mhriemers/lunch-money-cli/tree/main/packages/cli-core#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@lunch-money/lunch-money-js-v2": "^2.9.0",
"@oclif/core": "^4"
},
"peerDependencies": {
"@oclif/core": "^4"
},
"devDependencies": {
"@types/mocha": "^10",
"@types/node": "^25.5.0",
"chai": "^6",
"mocha": "^11",
"shx": "^0.4.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}