-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.38 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
{
"name": "@vatis-tech/asr-client-js",
"version": "2.0.9",
"description": "JavaScript client for Vatis Tech ASR services.",
"main": "cjs/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install",
"build:cjs": "babel src -d dist/cjs",
"build:umd": "browserify --entry dist/cjs/index.js --outfile dist/umd/vatis-tech-asr-client.umd.js --standalone VatisTechClient",
"build": "npm-run-all --sequential build:*",
"deploy:latest": "npm run install:clean && rm -rf dist && npm run build && cp package.json ./dist && cp README.md ./dist && cp LICENSE.md ./dist && cp CHANGELOG.md ./dist && cp CODE_OF_CONDUCT.md ./dist && cp CONTRIBUTING.md ./dist && cd dist && npm publish --access=public && cd ../",
"deploy:next": "npm run install:clean && rm -rf dist && npm run build && cp package.json ./dist && cp README.md ./dist && cp LICENSE.md ./dist && cp CHANGELOG.md ./dist && cp CODE_OF_CONDUCT.md ./dist && cp CONTRIBUTING.md ./dist && cd dist && npm publish --tag=next --access=public && cd ../"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vatis-Tech/asr-client-js.git"
},
"keywords": [
"asr",
"client",
"js",
"asr-client",
"asr-js",
"asr-client-js",
"asr-js-client",
"javascript",
"react",
"angular",
"svelte",
"vue",
"speech-to-text",
"speech-recognition",
"speech recognition",
"vatis tech",
"vatis",
"tech",
"vatis-tech",
"vatis.tech"
],
"author": {
"name": "Emanuel-Ioan Nazare",
"email": "emanuel@vatis.tech",
"url": "https://vatis.tech/"
},
"contributors": [
{
"name": "Emanuel-Ioan Nazare",
"email": "emanuel@vatis.tech",
"url": "https://vatis.tech/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Vatis-Tech/asr-client-js/issues"
},
"homepage": "https://github.com/Vatis-Tech/asr-client-js#readme",
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "7.16.5",
"@babel/runtime": "^7.17.9",
"browserify": "17.0.0",
"npm-run-all": "4.1.5",
"socket.io-client": "4.4.0"
},
"peerDependencies": {
"socket.io-client": "4.x"
},
"optionalDependencies": {
"acorn": "8.7.1"
}
}