-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
44 lines (44 loc) · 1.46 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
{
"name": "wavenet-for-chrome-extension",
"version": "13",
"description": "A wrapper for Google Cloud Text-to-Speech that transform highlighted text into high-quality natural sounding audio.",
"type": "module",
"scripts": {
"start:extension": "bun run build.js --environment=development",
"build:extension": "bun run build.js --environment=production",
"start:website": "parcel src/website/index.html --dist-dir dist-website",
"build:website": "parcel build src/website/index.html --dist-dir dist-website"
},
"author": "Michael Poirier-Ginter <[email protected]>",
"license": "MIT",
"devDependencies": {
"@parcel/packager-raw-url": "^2.10.2",
"@parcel/transformer-webmanifest": "^2.10.2",
"@sentry/esbuild-plugin": "^2.4.0",
"@sentry/types": "^7.57.0",
"@types/chrome": "^0.0.220",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"bun": "^1.0.7",
"bun-types": "^1.0.1",
"esbuild": "^0.18.17",
"parcel": "^2.10.2",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"process": "^0.11.10",
"tailwindcss": "^3.3.5"
},
"dependencies": {
"@sentry/browser": "^7.61.1",
"@sentry/tracing": "^7.61.1",
"dotenv": "^16.0.3",
"fuse.js": "^6.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-router-dom": "^6.8.2",
"tailwind-merge": "^1.14.0",
"wink-eng-lite-web-model": "^1.5.0",
"wink-nlp": "^1.14.3"
}
}