-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "promptflowx",
"version": "0.1.5",
"description": "promptflowx is a simple and powerful tool for building prompt-driven workflows.",
"repository": {
"url": "git+https://github.com/10cl/promptflowx.git",
"type": "git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"buildIndex": "tsc src/index.ts --declaration",
"build": "tsc",
"postbuild": "cp src/index.d.ts dist/index.d.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"DAG",
"promptflow",
"ai agent",
"chatdev",
"graph"
],
"author": "10cl <notice@toscl.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/standalone": "^7.18.13",
"@swc/core": "^1.3.101",
"js-yaml": "^4.1.0",
"langchain": "^0.1.34",
"ofetch": "^1.3.3",
"promptflow-eval": "1.0.0",
"promptflow-template": "1.0.0",
"tsx": "^4.15.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.4",
"d3-dsv": "^2.0.0"
},
"bugs": {
"url": "https://github.com/10cl/promptflowx/issues"
},
"homepage": "https://github.com/10cl/promptflowx#readme"
}