-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 KB
/
package.json
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
{
"name": "expensify-cli",
"version": "1.0.0",
"description": "A CLI tool to manage transactions and generate reports regarding your expenses",
"main": "dist/index.js",
"type": "module",
"scripts": {
"prettier-write": "pnpm exec prettier . --write",
"prettier-check": "pnpm exec prettier . --check || echo \"Prettier: All files are already formatted.\"",
"build": "npx tsc",
"install-local": "pnpm run build && pnpm add -g .",
"prepare": "husky",
"release:minor": "pnpm version minor && pnpm publish && git push && git push --tags",
"release:patch": "pnpm version patch && pnpm publish && git push && git push --tags",
"release:major": "pnpm version major && pnpm publish && git push && git push --tags"
},
"keywords": [],
"author": "Elmar Bickel (@bickelmeister)",
"license": "MIT",
"bin": {
"exp": "./dist/index.js"
},
"dependencies": {
"@json2csv/plainjs": "^7.0.6",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"csv-parse": "^5.6.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"expensify-cli": "link:",
"fs-extra": "^11.2.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@babel/parser": "^7.26.3",
"@babel/types": "^7.26.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"eslint-config-prettier": "^9.1.0",
"expect": "^29.7.0",
"husky": "^9.1.7",
"prettier": "3.4.2",
"pretty-format": "^29.7.0",
"typescript": "^5.7.2",
"undici-types": "^7.1.1"
}
}