-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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": "@uspasojevic/dualshock4",
"version": "1.0.0",
"description": "PlayStation DualShock4 driver for NodeJS",
"main": "dist/index.js",
"tpyes": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"build:docs": "typedoc --theme node_modules/typedoc-clarity-theme/bin --mode file --out docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uspasojevic96/dualshock4.git"
},
"keywords": [
"dualshock",
"playstation",
"controller",
"driver",
"ds4"
],
"author": "Uros Spasojevic",
"license": "ISC",
"bugs": {
"url": "https://github.com/uspasojevic96/dualshock4/issues"
},
"homepage": "https://github.com/uspasojevic96/dualshock4#readme",
"dependencies": {
"@uspasojevic/logger": "^1.0.0",
"node-hid": "^2.1.1",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@types/node": "^14.14.16",
"@types/node-hid": "^1.3.0",
"typedoc": "^0.19.2",
"typedoc-clarity-theme": "^1.1.0",
"typescript": "^4.1.3"
}
}