-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.36 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
{
"name": "rayli",
"version": "1.0.8",
"description": "📸 A command-line tool to generate code images of your local code right away from the terminal",
"author": "Kira272921",
"bin": {
"rayli": "./bin/run"
},
"homepage": "https://github.com/buidler-hub/rayli",
"license": "MIT",
"main": "src/index.ts",
"repository": "buidler-hub/rayli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@lucasliet/imgur-ts": "^1.1.2",
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.1.0",
"@oclif/plugin-warn-if-update-available": "^2.0.4",
"axios": "^0.27.2",
"chalk": "4.1.2",
"inquirer": "^8.2.4",
"inquirer-search-list": "^1.2.6",
"is-image": "^3.0.0",
"js-base64": "^3.7.2",
"ora": "6.1.0",
"puppeteer": "^14.2.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/inquirer": "8.2.1",
"@types/node": "17.0.38",
"@types/shelljs": "0.8.11",
"eslint": "8.17.0",
"eslint-config-oclif": "4.0.0",
"eslint-config-oclif-typescript": "1.0.2",
"globby": "13.1.1",
"oclif": "3.0.1",
"prettier": "2.6.2",
"shx": "0.3.4",
"ts-node": "10.8.1",
"tslib": "2.4.0",
"typescript": "4.7.3"
},
"oclif": {
"bin": "rayli",
"dirname": "rayli",
"commands": "./dist/src/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"message": "Version <%= chalk.greenBright(latest) %> of rayli is available! You are currently using <%= chalk.greenBright(config.version) %> version of rayli. Run `npm i -g rayli` to update."
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"format": "prettier --write .",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"resolutions": {
"@lucasliet/imgur-ts/**/@rmp135/imgur/**/axios": "^0.27.0"
},
"bugs": "https://github.com/buidler-hub/rayli/issues",
"keywords": [
"cli",
"automation",
"ray.so",
"code-image"
],
"types": "dist/index.d.ts"
}