-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1011 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
31
32
{
"name": "usbgecko-ts",
"version": "1.0.1",
"description": "A library for interfacing with a wii/gc from typescript!",
"main": "dist/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/main.js",
"build-web": "tsc && browserify dist/web.js --s WebGecko > dist/bundle.js",
"dev": "nodemon -e ts --exec \"npm run build-web\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdbell/USBGecko-TS.git"
},
"keywords": [],
"author": "Matthew Bell",
"license": "GPL2",
"bugs": {
"url": "https://github.com/mdbell/USBGecko-TS/issues"
},
"homepage": "https://github.com/mdbell/USBGecko-TS#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"@types/serialport": "^8.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"serialport": "^10.5.0",
"@types/w3c-web-serial": "^1.0.3"
}
}