-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.65 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.65 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
{
"name": "@msinternal/botframework-webchat-redux-store",
"version": "0.0.0-0",
"description": "The botframework-webchat redux-store package",
"types": "./dist/botframework-webchat-redux-store.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/botframework-webchat-redux-store.d.mts",
"default": "./dist/botframework-webchat-redux-store.mjs"
},
"require": {
"types": "./dist/botframework-webchat-redux-store.d.ts",
"default": "./dist/botframework-webchat-redux-store.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/**/*"
],
"homepage": "https://github.com/microsoft/BotFramework-WebChat/tree/main/packages/redux-store#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\" \"../react-valibot/package.json\" \"../core/package.json\""
},
"pinDependencies": {
"@types/react": [
"16",
"react@16.8.6 is our baseline"
]
},
"localDependencies": {
"@msinternal/botframework-webchat-react-valibot": "development",
"@msinternal/botframework-webchat-tsconfig": "development",
"botframework-webchat-core": "production"
},
"devDependencies": {
"@msinternal/botframework-webchat-react-valibot": "0.0.0-0",
"@msinternal/botframework-webchat-tsconfig": "0.0.0-0",
"@types/react": "^16.14.69",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"botframework-webchat-core": "0.0.0-0",
"valibot": "1.3.1"
},
"peerDependencies": {
"react": ">= 16.8.6"
}
}