-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.88 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.88 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
104
{
"name": "@msinternal/botframework-webchat-api-middleware",
"version": "0.0.0-0",
"description": "botframework-webchat-api/middleware package",
"main": "./dist/botframework-webchat-api-middleware.js",
"types": "./dist/botframework-webchat-api-middleware.d.ts",
"exports": {
"./internal": {
"import": {
"types": "./dist/botframework-webchat-api-middleware.internal.d.mts",
"default": "./dist/botframework-webchat-api-middleware.internal.mjs"
},
"require": {
"types": "./dist/botframework-webchat-api-middleware.internal.d.ts",
"default": "./dist/botframework-webchat-api-middleware.internal.js"
}
},
"./legacy": {
"import": {
"types": "./dist/botframework-webchat-api-middleware.legacy.d.mts",
"default": "./dist/botframework-webchat-api-middleware.legacy.mjs"
},
"require": {
"types": "./dist/botframework-webchat-api-middleware.legacy.d.ts",
"default": "./dist/botframework-webchat-api-middleware.legacy.js"
}
},
".": {
"import": {
"types": "./dist/botframework-webchat-api-middleware.d.mts",
"default": "./dist/botframework-webchat-api-middleware.mjs"
},
"require": {
"types": "./dist/botframework-webchat-api-middleware.d.ts",
"default": "./dist/botframework-webchat-api-middleware.js"
}
},
"./tsconfig.json": "./src/ts-config/config.json",
"./env": {
"types": "./src/env.d.ts"
}
},
"author": "Microsoft Corporation",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/BotFramework-WebChat.git"
},
"bugs": {
"url": "https://github.com/microsoft/BotFramework-WebChat/issues"
},
"files": [
"./dist/**/*",
"./src/**/*",
"*.js"
],
"homepage": "https://github.com/microsoft/BotFramework-WebChat/tree/main/packages/api-middleware#readme",
"scripts": {
"build": "npm run --if-present build:pre && npm run build:run && npm run --if-present build:post",
"build:pre": "npm run build:pre:local-dependencies && npm run build:pre:watch",
"build:pre:local-dependencies": "../../scripts/npm/build-local-dependencies.sh",
"build:pre:watch": "../../scripts/npm/build-watch.sh",
"build:run": "tsup",
"bump": "vg bump prod && vg bump dev && vg bump peer && (npm audit fix || exit 0)",
"eslint": "npm run precommit",
"postversion": "../../scripts/npm/postversion.sh",
"precommit": "npm run precommit:eslint -- src && npm run precommit:typecheck",
"precommit:eslint": "../../node_modules/.bin/eslint --report-unused-disable-directives --max-warnings 0",
"precommit:typecheck": "tsc --project ./src --emitDeclarationOnly false --esModuleInterop true --noEmit --pretty false",
"preversion": "../../scripts/npm/preversion.sh",
"start": "../../scripts/npm/notify-build.sh \"src\" \"../base/package.json\" \"../react-hooks/package.json\" \"../react-valibot/package.json\""
},
"pinDependencies": {
"react-wrap-with": [
"0.1.0",
"0.2.0 is having compatibility issues with preact@10.25.4"
]
},
"localDependencies": {
"@msinternal/botframework-webchat-base": "development",
"@msinternal/botframework-webchat-react-hooks": "development",
"@msinternal/botframework-webchat-react-valibot": "development"
},
"devDependencies": {
"@jridgewell/sourcemap-codec": "^1.5.5",
"@msinternal/botframework-webchat-base": "0.0.0-0",
"@msinternal/botframework-webchat-react-hooks": "0.0.0-0",
"@msinternal/botframework-webchat-react-valibot": "0.0.0-0",
"@types/node": "^25.3.3",
"cross-env": "^10.1.0",
"type-fest": "^5.4.4",
"typescript": "^5.9.3"
},
"dependencies": {
"handler-chain": "0.1.1",
"react-wrap-with": "0.1.0",
"valibot": "1.2.0"
},
"peerDependencies": {
"react": ">= 16.8.6",
"react-chain-of-responsibility": "0.4.2"
}
}