-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
105 lines (105 loc) · 4.64 KB
/
package.json
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
{
"name": "@salutejs/client",
"version": "1.35.3",
"description": "Модуль взаимодействия с виртуальным ассистентом",
"author": "Salute Frontend Team <[email protected]>",
"main": "dist/index.js",
"module": "esm/index.js",
"unpkgdev": "umd/assistant.development.min.js",
"unpkg": "umd/assistant.production.min.js",
"scripts": {
"prebuild": "rm -rf ./dist ./esm ./umd",
"build": "rollup -c --bundleConfigAsCjs",
"build:tools": "rm -f ./tools/bundle-report/*.js && tsc ./tools/bundle-report/src/index.ts --outDir ./tools/bundle-report --removeComments --downlevelIteration",
"prepublishOnly": "npm run build",
"release": "auto shipit",
"proto": "pbjs --no-typeurl --no-convert --no-verify --no-delimited -t static-module src/proto/index.proto > src/proto/index.js && pbts src/proto/index.js -o src/proto/index.d.ts",
"asr": "pbjs --no-typeurl --no-convert --no-verify --no-delimited --no-create --no-encode -t static-module src/assistantSdk/voice/recognizers/asr/index.proto > src/assistantSdk/voice/recognizers/asr/index.js && pbts src/assistantSdk/voice/recognizers/asr/index.js -o src/assistantSdk/voice/recognizers/asr/index.d.ts",
"mtt": "pbjs --no-typeurl --no-convert --no-verify --no-delimited --no-create --no-encode -t static-module src/assistantSdk/voice/recognizers/mtt/index.proto > src/assistantSdk/voice/recognizers/mtt/index.js && pbts src/assistantSdk/voice/recognizers/mtt/index.js -o src/assistantSdk/voice/recognizers/mtt/index.d.ts",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:report:coverage": "npx nyc report --reporter=html",
"cy:proto:asr": "pbjs --no-typeurl --no-convert --no-verify --no-delimited --no-create -t static-module --root cypbroot src/assistantSdk/voice/recognizers/asr/index.proto > cypress/support/proto/asr.js && pbts cypress/support/proto/asr.js -o cypress/support/proto/asr.d.ts",
"cy:proto:mtt": "pbjs --no-typeurl --no-convert --no-verify --no-delimited --no-create -t static-module --root cypbroot src/assistantSdk/voice/recognizers/mtt/index.proto > cypress/support/proto/mtt.js && pbts cypress/support/proto/mtt.js -o cypress/support/proto/mtt.d.ts",
"test:cy": "CY_MODE=production cypress run -b chromium --headless",
"lint": "eslint --ext .js,.ts,.tsx src/."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/salute-developers/salutejs-client"
},
"keywords": [
"salute",
"assistant",
"smartapp"
],
"dependencies": {
"@salutejs/scenario": "1.2.0",
"lodash.clonedeep": "^4.5.0",
"long": "^5.2.3",
"protobufjs": "^7.2.6",
"uuid": "^8.3.2"
},
"browserslist": [
"last 1 Chrome versions"
],
"devDependencies": {
"@auto-it/conventional-commits": "11.0.5",
"@auto-it/npm": "11.0.5",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@cypress/code-coverage": "3.9.12",
"@cypress/webpack-preprocessor": "5.9.1",
"@rollup/plugin-commonjs": "24.1.0",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.2",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-terser": "0.4.1",
"@rollup/plugin-typescript": "11.1.0",
"@types/jest": "26.0.14",
"@types/lodash.clonedeep": "4.5.6",
"@types/mocha": "8.0.3",
"@types/uuid": "7.0.3",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"auto": "11.0.5",
"cypress": "7.6.0",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-cypress": "2.13.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"file-loader": "6.1.0",
"husky": "4.3.0",
"istanbul-instrumenter-loader": "3.0.1",
"lint-staged": "10.5.4",
"mock-socket": "9.0.3",
"prettier": "2.8.7",
"pretty-quick": "3.1.0",
"protobufjs-cli": "1.1.1",
"rollup": "3.21.5",
"rollup-plugin-copy": "3.4.0",
"ts-loader": "8.0.4",
"tslib": "2.5.0",
"typescript": "4.3.5",
"webpack": "4.44.2"
},
"files": [
"dist",
"esm",
"umd"
],
"sideEffects": false,
"auto": {
"baseBranch": "master",
"plugins": [
[
"npm",
{
"setRcToken": false
}
],
"conventional-commits"
]
}
}