-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "@retter/rio-cli",
"version": "1.24.0",
"description": "Retter.io Command Line Tool",
"main": "./dist/index.js",
"bin": {
"rio": "./dist/index.js"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"build": "tsc -b",
"clean": "tsc --build --clean && rm -rf dist",
"test": "jest",
"patch-release": "npm version patch && npm run build && npm publish --access public",
"minor-release": "npm version minor && npm run build && npm publish --access public",
"major-release": "npm version major && npm run build && npm publish --access public",
"postinstall": "node ./dist/bootstrap.js postinstall",
"preuninstall": "node ./dist/bootstrap.js preuninstall",
"link": "npm run build && npm link",
"clean-install": "npm cache clean --force && rm -rf node_modules package-lock.json && npm install"
},
"dependencies": {
"@retter/sdk": "0.7.4",
"adm-zip": "0.5.9",
"axios": "1.7.7",
"chalk": "4.1.2",
"chokidar": "3.5.3",
"fs-extra": "10.0.0",
"ignore": "5.2.0",
"jsonwebtoken": "9.0.2",
"listr": "0.14.3",
"lodash": "4.17.21",
"prompts": "2.4.2",
"table": "6.8.0",
"yaml": "2.5.1",
"yargs": "17.3.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/adm-zip": "0.4.34",
"@types/figlet": "1.5.4",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.4.0",
"@types/jsonwebtoken": "9.0.2",
"@types/listr": "0.14.4",
"@types/lodash": "4.14.179",
"@types/node": "12.12.6",
"@types/prompts": "2.0.14",
"@types/readable-stream": "2.3.13",
"@types/urijs": "1.19.18",
"@types/yargs": "17.0.7",
"typescript": "5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rettersoft/rio-cli.git"
},
"keywords": [
"rio",
"cli",
"command",
"line",
"tool",
"retter.io"
],
"author": "@retter",
"license": "ISC",
"bugs": {
"url": "https://github.com/rettersoft/rio-cli/issues"
},
"homepage": "https://github.com/rettersoft/rio-cli#readme"
}