Skip to content

Commit 64280e0

Browse files
928358: TexttoSpeech
1 parent 4587bc2 commit 64280e0

File tree

24 files changed

+5487
-0
lines changed

24 files changed

+5487
-0
lines changed

How to/Text to speech/.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

How to/Text to speech/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# custom-fonts
2+
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run build
16+
```
17+
18+
### Lints and fixes files
19+
```
20+
npm run lint
21+
```
22+
23+
### Customize configuration
24+
See [Configuration Reference](https://cli.vuejs.org/config/).
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "esnext",
5+
"baseUrl": "./",
6+
"moduleResolution": "node",
7+
"paths": {
8+
"@/*": [
9+
"src/*"
10+
]
11+
},
12+
"lib": [
13+
"esnext",
14+
"dom",
15+
"dom.iterable",
16+
"scripthost"
17+
]
18+
}
19+
}

How to/Text to speech/package.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "custom-fonts",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"lint": "vue-cli-service lint"
9+
},
10+
"dependencies": {
11+
"@syncfusion/ej2-vue-pdfviewer": "*",
12+
"@syncfusion/ej2-base": "*",
13+
"buffer": "^6.0.3",
14+
"core-js": "^3.8.3",
15+
"crypto-browserify": "^3.12.0",
16+
"stream-browserify": "^3.0.0",
17+
"util": "^0.12.5",
18+
"vm-browserify": "^1.1.2",
19+
"vue": "^3.2.13"
20+
},
21+
"devDependencies": {
22+
"@babel/core": "^7.12.16",
23+
"@babel/eslint-parser": "^7.12.16",
24+
"@vue/cli-plugin-babel": "~5.0.0",
25+
"@vue/cli-plugin-eslint": "~5.0.0",
26+
"@vue/cli-service": "~5.0.0",
27+
"eslint": "^7.32.0",
28+
"eslint-plugin-vue": "^8.0.3"
29+
},
30+
"eslintConfig": {
31+
"root": true,
32+
"env": {
33+
"node": true
34+
},
35+
"extends": [
36+
"plugin:vue/essential",
37+
"eslint:recommended"
38+
],
39+
"parserOptions": {
40+
"parser": "@babel/eslint-parser"
41+
},
42+
"rules": {}
43+
},
44+
"browserslist": [
45+
"> 1%",
46+
"last 2 versions",
47+
"not dead",
48+
"not ie 11"
49+
]
50+
}
152 KB
Binary file not shown.
193 KB
Binary file not shown.
185 KB
Binary file not shown.
1020 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)