-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@framini/invoicer-cli",
"description": "Terminal assistant for generating invoices",
"version": "0.2.0",
"author": {
"name": "Francisco Ramini",
"email": "[email protected]"
},
"main": "dist/bin.js",
"license": "MIT",
"bin": {
"inv": "dist/bin.js",
"invv": "dist/bin.js"
},
"bugs": {
"url": "https://github.com/framini/invoicer-cli/issues"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/framini/invoicer-cli",
"files": [
"dist"
],
"keywords": [
"xstate cli",
"invoicer",
"invoice",
"ink"
],
"scripts": {
"build": "tsc -d",
"dev": "ts-node --files src/bin.tsx",
"prepublish": "yarn build",
"release": "np --no-tests"
},
"dependencies": {
"@xstate/react": "^0.7.1",
"axios": "^0.19.0",
"conf": "^6.1.0",
"cuid": "^2.1.6",
"date-fns": "^2.6.0",
"decimal.js": "^10.2.0",
"figures": "^3.1.0",
"ink": "^2.5.0",
"ink-spinner": "^3.0.1",
"ink-table": "^2.0.1",
"ink-text-input": "^3.2.1",
"react": "^16.10.2",
"update-notifier": "^4.0.0",
"xlsx-populate": "^1.20.1",
"xstate": "4.6.7"
},
"devDependencies": {
"@types/cuid": "^1.3.0",
"@types/figures": "^3.0.1",
"@types/ink-table": "^1.0.0",
"@types/node": "^12.7.12",
"@types/react": "^16.9.5",
"@types/update-notifier": "^2.5.0",
"np": "^5.2.1",
"prettier": "^1.19.1",
"ts-node": "^8.5.0",
"typescript": "^3.7.2"
}
}