-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
45
46
47
48
{
"name": "@lipsurf/plugins",
"version": "4.10.0",
"description": "Plugins for the LipSurf Chrome extension. Each plugin adds a set of commands to LipSurf.",
"scripts": {
"docs:watch": "vitepress dev docs",
"docs:build": "cross-env NODE_ENV=production vitepress build docs",
"build": "cross-env NODE_OPTIONS='--experimental-vm-modules --no-warnings' pnpm lipsurf-cli build",
"watch": "cross-env NODE_OPTIONS='--experimental-vm-modules --no-warnings' pnpm lipsurf-cli build --watch",
"version": "pnpm clean && pnpm lipsurf-cli vup && cross-env NODE_ENV=production pnpm build",
"clean": "rimraf -r dist/*"
},
"repository": {
"type": "git",
"url": "https://github.com/lipsurf/plugins"
},
"keywords": [
"voice",
"speech",
"STT",
"recognition",
"hands-free",
"abilities",
"disabilites",
"accessibility",
"a11y"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Miko Borys",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/lipsurf/plugins/issues"
},
"homepage": "https://www.lipsurf.com",
"peerDependencies": {
"typescript": "4.x"
},
"devDependencies": {
"@lipsurf/cli": "^2.7.1",
"@lipsurf/types": "^2.7.0",
"@types/chrome": "^0.0.173",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"vitepress": "^0.22.3"
}
}