-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.62 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
{
"name": "inquiryon",
"version": "1.0.1",
"description": "Plug-and-play Human-In-The-Loop framework for agentic workflows",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/examples/basic.ts",
"dev:test": "tsx src/examples/run-test.ts",
"test": "jest",
"test:llm": "tsx src/examples/test-llm-system.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"keywords": [
"Safe AI",
"Safe Generative AI",
"HITL",
"Human In The Loop",
"AI",
"Generative AI",
"Agent",
"AI Agent",
"Agent Safety"
],
"author": "Jeshua Cheng <jeshua.cheng@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dugsiii/Inquiryon-workflows.git"
},
"homepage": "https://github.com/dugsiii/Inquiryon-workflows?tab=readme-ov-file",
"bugs": {
"url": "https://github.com/inquiryon/inquiryon-workflows/issues"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"dependencies": {
"dotenv": "^17.2.1",
"uuid": "^11.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.2.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.32.0",
"jest": "^30.0.5",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}