-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 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
90
91
{
"name": "dria-cli",
"version": "0.0.10",
"description": "A command-line tool for Dria",
"author": "FirstBatch Team <[email protected]>",
"contributors": [
"Erhan Tezcan <[email protected]> (https://github.com/erhant)"
],
"license": "Apache-2.0",
"files": [
"/bin",
"LICENSE",
"README.md"
],
"bin": {
"dria": "./bin/index.js"
},
"scripts": {
"build": "npx tsc -p tsconfig.build.json",
"start": "node ./bin/index.js",
"dria": "yarn build && yarn start",
"test": "npx jest",
"lint": "npx eslint './src/**/*.ts' && echo 'All good!'",
"format": "npx prettier --check ./src/**/*.ts"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"axios": "^1.6.7",
"dockerode": "^4.0.2",
"loglevel": "^1.9.1",
"unzipper": "^0.10.14",
"yargs": "^17.7.2"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/dockerode": "^3.3.23",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@types/unzipper": "^0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.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",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"prettier": {
"printWidth": 120
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/no-unused-vars": "warn"
},
"ignorePatterns": [
"bin",
"node_modules"
]
},
"homepage": "https://github.com/firstbatchxyz/dria-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/firstbatchxyz/dria-cli.git"
},
"bugs": {
"url": "https://github.com/firstbatchxyz/dria-cli/issues/"
},
"keywords": [
"dria",
"hollowdb",
"arweave",
"yargs",
"cli",
"rag",
"ai"
]
}