-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 2.95 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
{
"name": "@ruska/cli",
"version": "0.1.7",
"description": "CLI for Orchestra - AI Agent Orchestration Platform",
"license": "Apache-2.0",
"author": "RUSKA <reggleston@ruska.ai>",
"homepage": "https://github.com/enso-labs/orchestra/tree/main/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/enso-labs/orchestra.git",
"directory": "cli"
},
"bugs": {
"url": "https://github.com/enso-labs/orchestra/issues"
},
"keywords": [
"cli",
"ai",
"agent",
"orchestra",
"ruska",
"llm",
"chatbot",
"assistant"
],
"bin": {
"ruska": "dist/cli.js"
},
"type": "module",
"exports": {
".": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
}
},
"main": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"!dist/__tests__"
],
"scripts": {
"start": "npm run build && node dist/cli.js",
"dev": "tsc --watch",
"build": "tsc",
"build:clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && npm run build",
"format": "xo --fix && prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check .",
"lint": "xo",
"test": "npm run lint && npm run build && ava",
"test:unit": "npm run build && ava",
"prepack": "npm run build:clean",
"prepublishOnly": "npm run test && npm run build:clean",
"version": "npm run format && git add -A",
"link": "npm install && npm run build && npm link",
"package:local": "npm run build:clean && npm pack"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"fullscreen-ink": "^0.1.0",
"ink": "^5.0.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"meow": "^11.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/react": "^18.0.32",
"@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.8",
"ts-node": "^10.9.1",
"tsx": "^4.21.0",
"typescript": "^5.0.3",
"xo": "^0.60.0"
},
"ava": {
"files": [
"dist/__tests__/**/*.test.js"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"ignores": [
"dist/**"
],
"rules": {
"react/prop-types": "off",
"unicorn/expiring-todo-comments": "off",
"ava/no-ignored-test-files": "off",
"unicorn/prevent-abbreviations": "off",
"@typescript-eslint/switch-exhaustiveness-check": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"promise/prefer-await-to-then": "off",
"complexity": "off",
"unicorn/prefer-at": "off",
"prettier/prettier": "off"
}
},
"prettier": "@vdemedes/prettier-config"
}