-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.78 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.78 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
105
106
107
108
109
110
111
112
113
{
"name": "botframework-directlinespeech-sdk",
"version": "0.0.0-0",
"description": "Direct Line Speech SDK",
"files": [
"./dist/**/*",
"./lib/**/*",
"./src/**/*"
],
"main": "./lib/index.js",
"exports": {
".": {
"import": {
"types": "./dist/botframework-directlinespeech-sdk.d.mts",
"default": "./dist/botframework-directlinespeech-sdk.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"engines": {
"node": ">= 10.14.2"
},
"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": "npm run build:run:tsup && npm run build:run:babel && npm run build:run:webpack",
"build:run:babel": "cross-env build_tool=babel module_format=commonjs babel src --ignore **/*.spec.js,**/*.test.js,__tests__/**/*.js --out-dir lib --verbose",
"build:run:tsup": "tsup",
"build:run:webpack": "npm run build:run:webpack:development && npm run build:run:webpack:production",
"build:run:webpack:development": "cross-env node_env=development webpack-cli",
"build:run:webpack:production": "cross-env node_env=production webpack-cli",
"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",
"precommit:eslint": "eslint --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --check src/**/*.{js,ts}",
"preversion": "../../scripts/npm/preversion.sh",
"start": "../../scripts/npm/notify-build.sh \"src\"",
"start:serve": "serve",
"test": "jest --watch"
},
"author": "Microsoft Corporation",
"license": "MIT",
"pinDependencies": {
"@types/jest": [
"29",
"pinned jest@29"
],
"babel-jest": [
"29",
"jest-image-snapshot@6.5.1 does not support jest@29 yet"
],
"eslint": [
"8",
"@typescript-eslint/eslint-plugin does not support eslint@9 yet"
],
"jest": [
"29",
"jest-image-snapshot@6.5.1 does not support jest@29 yet"
],
"microsoft-cognitiveservices-speech-sdk": [
"1.17.0",
"needs to bump manually"
]
},
"localDependencies": {},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"babel-jest": "^29.7.0",
"babel-plugin-istanbul": "^7.0.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"eslint": "^8.57.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-security": "^3.0.1",
"global-agent": "^3.0.0",
"has-resolved": "^1.1.0",
"jest": "^29.7.0",
"prettier": "^3.7.4",
"serve": "^14.2.5",
"simple-update-in": "^2.2.0",
"source-map-loader": "^5.0.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-stats-plugin": "^1.1.3"
},
"dependencies": {
"@babel/runtime": "7.28.6",
"abort-controller": "3.0.0",
"base64-arraybuffer": "1.0.2",
"core-js": "3.47.0",
"core-js-pure": "3.47.0",
"event-as-promise": "2.0.0",
"event-target-shim": "6.0.2",
"math-random": "2.0.1",
"microsoft-cognitiveservices-speech-sdk": "1.17.0",
"web-speech-cognitive-services": "8.1.3"
}
}