-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "@clear-street/stuctl",
"version": "1.0.5",
"description": "Clear Street Studio's CLI",
"author": "Clear Street",
"private": false,
"repository": "https://github.com/clear-street/stuctl",
"main": "index.js",
"type": "module",
"bin": {
"stuctl": "dist/index.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"start": "node dist/index.js",
"lint": "prettier --write . && eslint ."
},
"keywords": [],
"license": "MIT",
"dependencies": {
"@tqman/ink-table": "^0.0.0-development",
"axios": "^1.6.8",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"console-table-printer": "^2.12.0",
"dotenv": "^16.4.5",
"ink": "^4.4.1",
"jsonwebtoken": "^9.0.2",
"ora": "^8.0.1",
"react": "^18.2.0",
"typescript": "^5.4.3",
"ws": "^8.16.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/react": "^18.2.75",
"@types/ws": "^8.5.10",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2"
}
}