-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "webusb",
"version": "2.2.0",
"description": "Node.js implementation of the WebUSB Specification",
"homepage": "https://github.com/thegecko/webusb",
"author": "Rob Moran <[email protected]>",
"license": "MIT",
"main": "dist/webusb.umd.js",
"module": "dist/webusb.esm.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/thegecko/webusb.git"
},
"keywords": [
"web-usb",
"usb"
],
"scripts": {
"build": "rollup -c && typedoc src",
"watch": "rollup -c -w"
},
"engines": {
"node": ">=8.14.0"
},
"devDependencies": {
"rollup": "^1.10.1",
"rollup-plugin-delete": "^0.2.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.21.0",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/node": "^8.0.54",
"@types/usb": "^1.5.1",
"@types/w3c-web-usb": "^1.0.4",
"usb": "^1.6.0"
}
}