forked from kdrag0n/fastboot.js
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
31 lines (31 loc) · 989 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.1",
"description": "JavaScript implementation of fastboot, using WebUSB",
"main": "dist/fastboot.cjs",
"repository": "https://github.com/kdrag0n/fastboot.js",
"author": "Danny Lin <danny@kdrag0n.dev>",
"license": "MIT",
"dependencies": {
"@zip.js/zip.js": "^2.7.6",
"pako": "^2.1.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/w3c-web-usb": "^1.0.6",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"rollup": "^3.20.5",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"scripts": {
"build": "rollup -c && cp node_modules/{@zip.js/zip.js/dist/z-worker-pako.js,pako/dist/pako_inflate.min.js} dist/vendor"
},
"files": [
"dist/fastboot.*"
]
}