-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 2.98 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 2.98 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@xeroapi/xero-command-line",
"version": "0.0.3",
"description": "CLI tool for Xero API access via PKCE OAuth",
"license": "MIT",
"author": "Regan Ashworth",
"repository": {
"type": "git",
"url": "https://github.com/XeroAPI/xero-command-line.git"
},
"homepage": "https://github.com/XeroAPI/xero-command-line#readme",
"bugs": {
"url": "https://github.com/XeroAPI/xero-command-line/issues"
},
"keywords": [
"xero",
"cli",
"accounting",
"oauth",
"pkce",
"api"
],
"type": "module",
"bin": {
"xero": "./bin/run.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/bin",
"/dist"
],
"scripts": {
"build": "tsc -b",
"dev": "node --loader ts-node/esm bin/dev.js",
"test": "vitest run",
"test:watch": "vitest",
"postpack": "rm -f oclif.manifest.json",
"prepack": "tsc -b && oclif manifest"
},
"oclif": {
"bin": "xero",
"dirname": "xero-command-line",
"commands": "./dist/commands",
"topicSeparator": " ",
"topics": {
"profile": {
"description": "Manage Xero connection profiles"
},
"contacts": {
"description": "Manage Xero contacts"
},
"contact-groups": {
"description": "Manage Xero contact groups"
},
"accounts": {
"description": "List Xero accounts"
},
"invoices": {
"description": "Manage Xero invoices"
},
"quotes": {
"description": "Manage Xero quotes"
},
"credit-notes": {
"description": "Manage Xero credit notes"
},
"manual-journals": {
"description": "Manage manual journals"
},
"bank-transactions": {
"description": "Manage bank transactions"
},
"payments": {
"description": "Manage payments"
},
"items": {
"description": "Manage Xero items"
},
"currencies": {
"description": "List currencies"
},
"tax-rates": {
"description": "List tax rates"
},
"reports": {
"description": "Generate Xero reports"
},
"tracking": {
"description": "Manage tracking categories and options"
},
"tracking:categories": {
"description": "Manage tracking categories"
},
"tracking:options": {
"description": "Manage tracking options"
},
"org": {
"description": "View organisation details"
}
},
"plugins": [
"@oclif/plugin-help"
]
},
"dependencies": {
"@inquirer/prompts": "^7",
"@napi-rs/keyring": "^1.2.0",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@toon-format/toon": "^2.1.0",
"chalk": "^5",
"cli-table3": "^0.6",
"open": "^11.0.0",
"xero-node": "^13",
"zod": "^3"
},
"devDependencies": {
"@oclif/test": "^4",
"@types/node": "^20",
"oclif": "^4",
"ts-node": "^10",
"typescript": "^5",
"vitest": "^2"
},
"engines": {
"node": ">=18.0.0"
}
}