forked from kdrag0n/fastboot.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.26 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.26 KB
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
{
"type": "module",
"name": "android-fastboot",
"version": "1.1.3",
"description": "JavaScript implementation of fastboot, using WebUSB",
"main": "dist/fastboot.mjs",
"repository": "https://github.com/kdrag0n/fastboot.js",
"author": "Danny Lin <danny@kdrag0n.dev>",
"license": "MIT",
"dependencies": {
"@zip.js/zip.js": "2.7.32"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/w3c-web-usb": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"better-docs": "^2.7.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jsdoc": "^4.0.2",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.1",
"taffydb": "^2.7.3",
"typescript": "^5.3.3"
},
"scripts": {
"doc": "jsdoc -c jsdoc.json",
"build": "rollup -c",
"lint": "eslint --ext .ts --ignore-path .gitignore --fix src"
},
"files": [
"dist/fastboot.*"
],
"packageManager": "yarn@4.0.2"
}