-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.11 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@trycourier/cli",
"version": "2.0.0",
"license": "MIT",
"bin": {
"courier": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "prettier --check . && xo && ava",
"format": "prettier --write .",
"clean": "rm -rf dist && rm -rf node_modules && yarn install"
},
"files": [
"dist"
],
"dependencies": {
"@babel/runtime": "^7.24.7",
"@inkjs/ui": "^2.0.0",
"@trycourier/client-graphql": "^6.0.0",
"@trycourier/core": "^6.0.0",
"@trycourier/courier": "^6.2.1",
"cli-spinners": "^3.0.0",
"csv-stringify": "^6.5.0",
"dotenv": "^16.0.3",
"duckdb": "^1.0.0",
"execa": "^9.1.0",
"ink": "^5.0.1",
"ink-link": "^4.0.0",
"ink-spinner": "^5.0.0",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"ms": "3.0.0-canary.1",
"react": "^18.2.0",
"usehooks-ts": "^3.1.0",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/lodash": "^4.17.4",
"@types/luxon": "^3.4.2",
"@types/node": "^20.13.0",
"@types/react": "^18.0.32",
"@types/yargs-parser": "^21.0.0",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^5.2.0",
"chalk": "^5.2.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^3.0.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"xo": "^0.53.1"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"prettier": "@vdemedes/prettier-config",
"repository": {
"type": "git",
"url": "https://github.com/trycourier/courier-cli.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/trycourier/courier-cli#readme",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}