-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.37 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.37 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
{
"name": "riseup-cli",
"version": "0.4.1",
"description": "Unofficial CLI for RiseUp personal finance, query your spending, income and balances from the terminal",
"type": "module",
"bin": {
"riseup": "./dist/cli.js",
"riseup-cli": "./dist/cli.js"
},
"files": [
"dist/",
"src/",
"tsconfig.json",
"tsup.config.ts"
],
"scripts": {
"build": "tsup && node -e \"require('fs').cpSync('src/data','dist/data',{recursive:true})\"",
"prepare": "npm run build",
"dev": "tsx src/cli.ts",
"test": "vitest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"riseup",
"finance",
"cli",
"israel",
"budget",
"spending"
],
"author": "Amram Englander",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arsolutioner/riseup-cli.git"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"playwright": "^1.58.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"chrome-remote-interface": "^0.28.2",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitepress": "^1.6.3",
"vitest": "^3.0.8"
}
}