-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.86 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.86 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
{
"name": "krinql-cli",
"version": "0.0.6",
"description": "A simple developer friendly CLI for using Krinql",
"main": "./build/cli.js",
"license": "GPL-3.0",
"bin": {
"krinql": "./build/cli.js",
"krinql-cli": "./build/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/krinql/cli.git"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/build"
],
"keywords": [
"cli",
"krinql",
"codex",
"AI",
"krinql-cli"
],
"author": "Krinql <support@krinql.com> (krinql.com)",
"homepage": "https://krinql.com",
"bugs": "https://github.com/krinql/cli/issues",
"scripts": {
"build": "tsc",
"package:linux": "pkg . --targets node14-linux-x64 --output bin/linux/krinql",
"package:macos": "pkg . --targets node14-macos-x64 --output bin/macos/krinql",
"package:win": "pkg . --targets node14-win-x64 --output bin/win/krinql.exe",
"format": "prettier --loglevel warn --write \"**/*.{ts,js,json,yaml}\"",
"format:check": "prettier --loglevel warn --check \"**/*.{ts,js,json,yaml}\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\""
},
"dependencies": {
"axios": "^0.24.0",
"chalk": "4.1.1",
"conf": "^10.0.3",
"figlet": "^1.5.2",
"jwt-decode": "^3.1.2",
"open": "^8.4.0",
"ora": "5.4.1",
"yargs": "17.0.1"
},
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/node": "16.0.1",
"@types/yargs": "17.0.2",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"pkg": "5.3.0",
"prettier": "2.3.2",
"ts-node": "10.0.0",
"typescript": "4.3.5"
},
"pkg": {
"scripts": "build/**/*.js"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}