-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.6 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
{
"name": "@flowxtra/cli",
"version": "0.1.0",
"description": "Run your Flowxtra hiring from the terminal — post jobs, screen candidates and manage pipelines.",
"keywords": [
"flowxtra",
"recruiting",
"ats",
"hiring",
"cli",
"jobs",
"candidates"
],
"homepage": "https://flowxtra.com/cli",
"bugs": "https://github.com/Flowxtra/flowxtra_cli/issues",
"repository": {
"type": "git",
"url": "https://github.com/Flowxtra/flowxtra_cli.git"
},
"license": "MIT",
"author": {
"name": "Flowxtra GmbH",
"email": "office@flowxtra.com",
"url": "https://flowxtra.com"
},
"publishConfig": {
"access": "public"
},
"type": "commonjs",
"bin": {
"flowxtra": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@oclif/core": "^3.27.0",
"@oclif/plugin-help": "^6.2.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"open": "^8.4.2",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/gradient-string": "^1.1.5",
"@types/node": "^20.12.0",
"oclif": "^4.14.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"oclif": {
"bin": "flowxtra",
"dirname": "flowxtra",
"commands": "./dist/commands",
"topicSeparator": " ",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": "./dist/hooks/init/welcome"
},
"topics": {
"auth": {
"description": "Sign in to Flowxtra and manage your session"
},
"jobs": {
"description": "Create, list and publish job postings"
},
"candidates": {
"description": "Review, move and shortlist candidates"
},
"company": {
"description": "Inspect company, offices, pipelines and team"
},
"meetings": {
"description": "Schedule and list interviews"
},
"social": {
"description": "Manage connected social accounts and posts"
},
"custom-fields": {
"description": "Manage company custom fields"
},
"webhooks": {
"description": "Manage outgoing webhooks for recruitment events"
}
}
},
"scripts": {
"clean": "node -e \"const fs=require('fs');fs.rmSync('dist',{recursive:true,force:true});fs.rmSync('tsconfig.tsbuildinfo',{force:true})\"",
"build": "npm run clean && tsc -b",
"prepack": "npm run build && oclif manifest",
"postpack": "node -e \"require('fs').rmSync('oclif.manifest.json',{force:true})\""
}
}