-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.31 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.31 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
{
"name": "@msinternal/botframework-webchat-core-debug-api",
"version": "0.0.0-0",
"description": "botframework-webchat-core/debug-api package",
"main": "./dist/botframework-webchat-core-debug-api.js",
"types": "./dist/botframework-webchat-core-debug-api.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/botframework-webchat-core-debug-api.d.mts",
"default": "./dist/botframework-webchat-core-debug-api.mjs"
},
"require": {
"types": "./dist/botframework-webchat-core-debug-api.d.ts",
"default": "./dist/botframework-webchat-core-debug-api.js"
}
}
},
"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/core-debug-api#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\""
},
"pinDependencies": {},
"localDependencies": {
"@msinternal/botframework-webchat-base": "development"
},
"devDependencies": {
"@msinternal/botframework-webchat-base": "0.0.0-0",
"type-fest": "^5.3.1"
},
"dependencies": {
"tagged-tag": "^1.0.0"
}
}