forked from genoswitch/webdfu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dfu-next",
"version": "1.0.0",
"description": "Driver for working with DFU in a browser over Web USB",
"type": "module",
"main": "src/index.ts",
"files": [
"src",
"LICENSE",
"README.md",
"package.json",
"package-lock.json"
],
"scripts": {
"build": "webpack --mode production",
"format": "prettier --check .",
"lint": "eslint **/*.ts",
"types": "tsc --build tsconfig.json",
"test": "run-p types lint format",
"clear": "rimraf .cache dist tsconfig.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/genoswitch/webdfu.git"
},
"keywords": [
"dfu",
"web",
"flipper"
],
"contributors": [
"Nikolay Govorov <me@govorov.online> (https://govorov.online)",
"James Cahill"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/genoswitch/webdfu/issues"
},
"homepage": "https://github.com/genoswitch/webdfu#readme",
"devDependencies": {
"@types/w3c-web-serial": "^1.0.1",
"@types/w3c-web-usb": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.4.2",
"typed-emitter": "^2.1.0",
"typescript": "^4.3.2",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"nanoevents": "^6.0.0"
}
}