-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3 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
{
"name": "@msinternal/botframework-webchat-base",
"version": "0.0.0-0",
"description": "Base botframework-webchat package",
"main": "./dist/botframework-webchat-base.js",
"types": "./dist/botframework-webchat-base.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/botframework-webchat-base.d.mts",
"default": "./dist/botframework-webchat-base.mjs"
},
"require": {
"types": "./dist/botframework-webchat-base.d.ts",
"default": "./dist/botframework-webchat-base.js"
}
},
"./utils": {
"import": {
"types": "./dist/botframework-webchat-base.utils.d.mts",
"default": "./dist/botframework-webchat-base.utils.mjs"
},
"require": {
"types": "./dist/botframework-webchat-base.utils.d.ts",
"default": "./dist/botframework-webchat-base.utils.js"
}
},
"./valibot": {
"import": {
"types": "./dist/botframework-webchat-base.valibot.d.mts",
"default": "./dist/botframework-webchat-base.valibot.mjs"
},
"require": {
"types": "./dist/botframework-webchat-base.valibot.d.ts",
"default": "./dist/botframework-webchat-base.valibot.js"
}
}
},
"author": "Microsoft Corporation",
"license": "MIT",
"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/component#readme",
"private": true,
"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 && (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\" \"../tsconfig/package.json\""
},
"localDependencies": {
"@msinternal/botframework-webchat-tsconfig": "development"
},
"pinDependencies": {},
"devDependencies": {
"@msinternal/botframework-webchat-tsconfig": "0.0.0-0",
"@types/node": "^25.3.3",
"core-js-pure": "^3.48.0",
"cross-env": "^10.1.0",
"type-fest": "^5.4.4",
"typescript": "^5.9.3"
},
"peerDependencies": {
"valibot": "1.2.0"
}
}