-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 KB
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
{
"name": "@lipsurf/cli",
"version": "2.7.1",
"description": "Build LipSurf plugins to add custom voice commands to any website.",
"bugs": {
"url": "https://github.com/LipSurf/cli/issues"
},
"bin": {
"lipsurf-cli": "lib/lipsurf-cli.js"
},
"scripts": {
"clean": "rm -r lib/*",
"build": "cpy plugins-tsconfig.json lib && tsc -p tsconfig.json",
"preversion": "pnpm build",
"watch": "cpy plugins-tsconfig.json lib && tsc -p tsconfig.json -w"
},
"author": "Miko Borys",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@lipsurf/types": "^2.7.0",
"@swc/core": "^1.2.127",
"chokidar": "^3.5.2",
"clone": "^2.1.2",
"commander": "^8.3.0",
"esbuild": "^0.14.42",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"js-beautify": "^1.13.5",
"lodash": "^4.17.21",
"resolve": "^1.22.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@types/node": "^16.11.1",
"@types/resolve": "^1.20.1",
"cpy-cli": "^3.1.1"
},
"engines": {
"node": ">=14.0.0"
},
"homepage": "https://github.com/LipSurf/cli",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LipSurf/cli.git"
},
"main": "index.js",
"directories": {
"lib": "lib"
},
"keywords": [
"voice-control",
"speech-recognition",
"a11y",
"accessibility",
"voice"
]
}