-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
31 lines (31 loc) · 900 Bytes
/
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
{
"name": "android-fastboot",
"version": "1.1.3",
"description": "JavaScript implementation of fastboot, using WebUSB",
"main": "dist/fastboot.cjs",
"repository": "https://github.com/kdrag0n/fastboot.js",
"author": "Danny Lin <[email protected]>",
"license": "MIT",
"dependencies": {
"@zip.js/zip.js": "2.2.27"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/w3c-web-usb": "^1.0.4",
"better-docs": "^2.3.2",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"jsdoc": "^3.6.6",
"prettier": "^2.2.1",
"rollup": "^2.38.0",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"doc": "jsdoc -c jsdoc.json",
"build": "rollup -c"
},
"files": [
"dist/fastboot.*"
]
}