-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.62 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.62 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
{
"name": "botframework-webchat-fluent-theme",
"version": "0.0.0-0",
"description": "Fluent theme for Bot Framework Web Chat",
"main": "./dist/botframework-webchat-fluent-theme.js",
"types": "./dist/botframework-webchat-fluent-theme.d.ts",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": {
"types": "./dist/botframework-webchat-fluent-theme.d.mts",
"default": "./dist/botframework-webchat-fluent-theme.mjs"
},
"required": {
"types": "./dist/botframework-webchat-fluent-theme.d.ts",
"default": "./dist/botframework-webchat-fluent-theme.js"
}
},
"./static/*": "./static/*"
},
"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"
},
"homepage": "https://github.com/microsoft/BotFramework-WebChat/packages/core#readme",
"files": [
"dist/**/*.js",
"dist/**/*.map",
"dist/**/*.mjs",
"dist/**/*.mts",
"dist/**/*.ts",
"src/**/*",
"static/**/*"
],
"scripts": {
"build": "npm run --if-present build:pre && npm run build:run && npm run --if-present build:post",
"build:post": "npm run build:post:dtsroll && npm run build:post:validate",
"build:post:dtsroll": "dtsroll ./dist/*.d.*",
"build:post:validate": "npm run build:post:validate:css && npm run build:post:validate:inject-css && npm run build:post:validate:dts",
"build:post:validate:css": "vg ast-check lightning-css ./dist/*.css",
"build:post:validate:dts": "vg ast-check dist-types ./dist/*.d.*",
"build:post:validate:inject-css": "vg ast-check css-inject dist/*.js dist/*.mjs static/*.js",
"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": "concurrently --prefix-colors \"auto\" \"npm:build:run:*\"",
"build:run:static": "node ./esbuild.static.mjs",
"build:run:tsup": "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\" \"../bundle/package.json\""
},
"pinDependencies": {
"@types/react": [
"16",
"react@16.8.6 is our baseline"
]
},
"localDependencies": {
"@msinternal/botframework-webchat-styles": "development",
"@msinternal/botframework-webchat-tsconfig": "development",
"botframework-webchat": "production"
},
"devDependencies": {
"@msinternal/botframework-webchat-styles": "0.0.0-0",
"@msinternal/botframework-webchat-tsconfig": "0.0.0-0",
"@types/math-random": "^1.0.2",
"@types/node": "^25.3.3",
"@types/react": "^16.14.69",
"concurrently": "^9.2.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"botframework-webchat": "0.0.0-0",
"classnames": "2.5.1",
"inject-meta-tag": "0.1.0",
"math-random": "2.0.1",
"use-ref-from": "0.2.1",
"valibot": "1.3.1"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
}