-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.2 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
{
"name": "webhid-ds4",
"version": "1.0.5",
"description": "An API wrapper built over the experimental WebHID API to communicate with DualShock 4 controllers",
"main": "dist/webhid-ds4.js",
"module": "dist/webhid-ds4.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/TheBITLINK/WebHID-DS4.git"
},
"author": "TheBITLINK aka BIT <me@thebitlink.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup -c",
"build-docs": "parcel build demo/index.html -d docs --public-url ./ && typedoc"
},
"devDependencies": {
"@types/crc": "^3.4.0",
"@types/events": "^3.0.0",
"@types/w3c-web-hid": "^1.0.0",
"@vue/component-compiler-utils": "^3.0.0",
"parcel-bundler": "^1.12.5",
"rollup": "^1.26.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"tslib": "^1.10.0",
"typedoc": "^0.20.36",
"typescript": "^3.6.3",
"vue": "^2.6.10",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"crc": "^3.8.0"
},
"browserslist": [
"last 1 Chrome version"
]
}