-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "simple-hid",
"version": "1.0.3",
"description": "Simplified USB-HID based protocol library, designed for use with WebUSB",
"main": "./dist/simpleHID.js",
"typings": "./typings/simpleHID.d.ts",
"scripts": {
"build": "npm run tsc && npm run rollup",
"tsc": "tsc",
"rollup": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EntropicEngineering/SimpleHID.git"
},
"keywords": [
"webusb",
"hid"
],
"author": "riggs",
"license": "MIT",
"bugs": {
"url": "https://github.com/EntropicEngineering/SimpleHID/issues"
},
"homepage": "https://github.com/EntropicEngineering/SimpleHID#readme",
"devDependencies": {
"@types/w3c-web-usb": "^1.0.0",
"rollup": "^0.56.3",
"rollup-plugin-node-resolve": "^3.0.3",
"typescript": "^2.7.2"
},
"dependencies": {
"binary-structures": "^2.1.0"
},
"files": [
"src/*.ts",
"dist",
"typings/*.d.ts"
]
}