-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
{
"name": "@picovoice/web-utils",
"version": "1.4.3",
"description": "Picovoice web utility functions",
"author": "Picovoice",
"license": "Apache-2.0",
"entry": "src/index.ts",
"module": "dist/esm/index.js",
"iife": "dist/iife/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:all": "rollup --config",
"build:types": "tsc --declaration --declarationMap --emitDeclarationOnly --outDir ./dist/types",
"build": "npm-run-all --parallel build:**",
"lint": "eslint . --ext .js,.ts",
"prepack": "npm-run-all build",
"start": "cross-env TARGET='debug' rollup --config --watch",
"setup-test": "cmake -DCMAKE_BUILD_TYPE=Release -S lib -B lib/build && cmake --build lib/build",
"test": "cypress run --browser chrome",
"watch": "rollup --config --watch"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.4",
"@babel/runtime": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/pluginutils": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"asyncify-wasm": "^1.2.1",
"cross-env": "^7.0.3",
"cypress": "^12.8.1",
"eslint": "^8.22.0",
"eslint-plugin-cypress": "^2.12.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-web-worker-loader": "^1.6.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"commander": "^10.0.1"
},
"bin": {
"pvbase64": "./scripts/base64.js"
},
"engines": {
"node": ">=14"
}
}