forked from botpress/botpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@botpress/cli",
"version": "0.8.62",
"description": "Botpress CLI",
"scripts": {
"build": "pnpm run bundle && pnpm run template:gen",
"dev": "ts-node -T src/index.ts",
"start": "node dist/index.js",
"check:type": "tsc --noEmit",
"bundle": "ts-node -T build.ts",
"template:gen": "pnpm -r --stream -F @bp-templates/* exec bp gen",
"test:e2e": "ts-node -T ./e2e",
"test:unit": "pnpm vitest --run"
},
"keywords": [],
"author": "",
"license": "MIT",
"bin": {
"bp": "./bin.js"
},
"main": "dist/index.js",
"dependencies": {
"@botpress/client": "0.29.2",
"@botpress/sdk": "0.10.13",
"@bpinternal/const": "^0.0.20",
"@bpinternal/tunnel": "^0.1.1",
"@bpinternal/yargs-extra": "^0.0.3",
"@parcel/watcher": "^2.1.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.17",
"@types/verror": "^1.10.6",
"axios": "^1.4.0",
"bluebird": "^3.7.2",
"boxen": "5.1.2",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"dotenv": "^16.4.4",
"esbuild": "^0.15.18",
"json-schema-to-typescript": "^11.0.2",
"latest-version": "5.1.0",
"lodash": "^4.17.21",
"prompts": "^2.4.2",
"radash": "^9.5.0",
"semver": "^7.3.8",
"typescript": "^4.9.4",
"uuid": "^9.0.0",
"verror": "^1.10.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@bpinternal/log4bot": "^0.0.4",
"@types/bluebird": "^3.5.38",
"@types/json-schema": "^7.0.11",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.11",
"@types/tmp": "^0.2.3",
"@types/uuid": "^9.0.1",
"find-process": "^1.4.7",
"glob": "^9.3.4",
"tmp": "^0.2.1",
"ts-node": "^10.9.1"
},
"engines": {
"node": ">=18"
}
}