-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1008 Bytes
/
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
{
"name": "smart-hr-assistant-cli",
"version": "1.0.0",
"description": "An interactive HR Assistant Chatbot",
"main": "dist/index.js",
"bin": {
"smart-hr": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"dev": "ts-node src/index.ts",
"prepare": "npm run build",
"fga:init": "npx tsx ./scripts/fga-init.ts",
"fga:test": "fga model test --tests tests.fga.yaml",
"fga:transform": "fga model transform --file schema.fga"
},
"keywords": [
"cli",
"hr",
"assistant",
"chatbot"
],
"author": "",
"license": "ISC",
"dependencies": {
"@openfga/sdk": "^0.8.0",
"chalk": "4.1.2",
"commander": "^11.0.0",
"dotenv": "^16.4.7",
"inquirer": "^8.2.5",
"llamaindex": "^0.8.31",
"marked": "^4.3.0",
"marked-terminal": "^5.2.0"
},
"devDependencies": {
"@types/inquirer": "*",
"@types/marked": "^4.3.0",
"@types/node": "*",
"ts-node": "*",
"typescript": "*"
}
}