-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 957 Bytes
/
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
{
"name": "serenade",
"description": "Code with voice. Learn more at https://serenade.ai.",
"displayName": "Serenade",
"license": "MIT",
"repository": "https://github.com/serenadeai/atom",
"main": "./build/extension",
"version": "1.5.1",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"keywords": [
"voice",
"accessibility"
],
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch"
},
"dependencies": {
"bufferutil": "^4.0.6",
"globby": "^11.0.0",
"mkdirp": "0.5.1",
"utf-8-validate": "^5.0.8",
"uuid": "^7.0.2",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/atom": "^1.36.1",
"@types/globby": "^9.1.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.14.12",
"@types/uuid": "^7.0.2",
"@types/ws": "^7.2.3",
"ts-loader": "^6.0.4",
"typescript": "^4.6.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
}
}