-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "samfirm",
"version": "0.2.0",
"description": "A streaming downloader, decryptor and extractor of Samsung firmware",
"keywords": [
"samsung",
"firmware",
"samfirm"
],
"author": "Jesse Chan",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/jesec/samfirm.js.git"
},
"bugs": {
"url": "https://github.com/jesec/samfirm.js/issues"
},
"files": [
"dist"
],
"bin": {
"samfirm": "dist/index.js"
},
"scripts": {
"build": "ncc build index.ts -m -t",
"check-source-formatting": "prettier -c .",
"check-types": "tsc --noEmit",
"format-source": "prettier -w .",
"lint": "eslint --max-warnings 0 --ext .ts .",
"prepack": "rm -rf dist && npm run build",
"start": "ts-node-dev --transpile-only index.ts"
},
"devDependencies": {
"@types/cli-progress": "^3.8.0",
"@types/node": "^14.14.6",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"@vercel/ncc": "^0.25.1",
"axios": "^0.21.0",
"cli-progress": "^3.8.2",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"fast-xml-parser": "^3.17.4",
"prettier": "^2.1.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5",
"unzip-stream": "^0.3.1",
"yargs": "^16.1.0"
}
}