-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "serenade-chrome",
"version": "2.0.3",
"description": "Code with voice. Learn more at https://serenade.ai.",
"main": "dist/index.js",
"author": "Serenade Labs, Inc. <[email protected]>",
"keywords": ["voice", "accessibility"],
"license": "MIT",
"homepage": "https://serenade.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/serenadeai/chrome.git"
},
"bugs": {
"url": "https://github.com/serenadeai/chrome/issues"
},
"scripts": {
"build": "webpack --mode development",
"dist": "webpack --mode production && zip -r build.zip build img manifest.json",
"watch": "webpack --mode development --watch",
"test": "open http://localhost:8001/src/test & python -m http.server 8001"
},
"devDependencies": {
"@types/chrome": "^0.0.174",
"@types/uuid": "^8.3.3",
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"findandreplacedomtext": "^0.4.6",
"uuid": "^8.3.2"
}
}