-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 758 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 758 Bytes
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
{
"name": "dualsense",
"version": "0.0.1",
"description": "Sony DualSense controller API using WebHID",
"main": "./lib/dualsense.js",
"repository": "https://github.com/equalent/DualSense.js.git",
"author": "Andrei Tsurkan",
"license": "MIT",
"private": false,
"scripts": {
"watch": "webpack --watch --mode=development",
"build": "webpack --mode=production"
},
"devDependencies": {
"@types/node": "^17.0.16",
"@types/w3c-web-hid": "^1.0.2",
"http-server": "^14.1.0",
"ts-loader": "^9.2.6",
"tsc": "^2.0.4",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"tslib": "^2.3.1"
},
"dependencies": {
"ahrs": "^1.3.0",
"buffer": "^6.0.3",
"crc": "^4.1.0"
}
}