-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.58 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "appstraction",
"version": "1.5.0",
"description": "An abstraction layer for common instrumentation functions (e.g. installing and starting apps, setting preferences, etc.) on Android and iOS.",
"bugs": "https://github.com/tweaselORG/appstraction/issues",
"repository": {
"type": "git",
"url": "https://github.com/tweaselORG/appstraction.git"
},
"license": "MIT",
"contributors": [
{
"name": "Benjamin Altpeter",
"email": "[email protected]",
"url": "https://benjamin-altpeter.de"
},
{
"name": "Lorenz Sieben",
"email": "[email protected]",
"url": "https://lorenz-sieben.com"
}
],
"type": "module",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/scripts"
],
"scripts": {
"build": "yarn print-version && parcel build",
"fix": "yarn eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx --fix",
"postinstall": "node scripts/postinstall.js; andromatic-install -p platform-tools 'build-tools;33.0.2'",
"lint": "tsc && eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx && git diff --check",
"prepack": "rm -rf .parcel-cache dist && yarn build && yarn typedoc",
"print-version": "echo \"// Shim to make the version available at runtime. Auto-generated, please ignore.\nexport const appstractionVersion = '$npm_package_version';\" > src/version.gen.ts",
"test": "echo 'TODO: No tests specified yet.'",
"tsrun": "node --loader ts-node/esm",
"postversion": "yarn print-version && git add src/version.gen.ts",
"watch": "parcel watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc && typedoc && git add docs"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx,css,scss,json}": [
"prettier --write"
],
"*.{ts,js,tsx,jsx}": [
"eslint --fix"
]
},
"prettier": "@baltpeter/prettier-config",
"dependencies": {
"@napi-rs/lzma": "^1.1.2",
"andromatic": "^1.1.1",
"autopy": "^1.1.1",
"cross-fetch": "^3.1.5",
"execa": "^6.1.0",
"file-type": "^18.3.0",
"frida": "^16.0.8",
"fs-extra": "^11.1.0",
"hasha": "^6.0.0",
"ipa-extract-info": "^1.2.6",
"node-ssh": "^13.1.0",
"p-retry": "^5.1.2",
"p-timeout": "^6.1.2",
"pkijs": "^3.0.14",
"semver": "^7.3.8",
"tempy": "^3.0.0",
"ts-node": "^10.9.1",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@baltpeter/eslint-config": "^2.1.2",
"@baltpeter/prettier-config": "^2.0.0",
"@baltpeter/tsconfig": "^2.0.0",
"@parcel/packager-ts": "2.8.2",
"@parcel/transformer-typescript-types": "2.8.2",
"@types/fs-extra": "^11.0.0",
"@types/node": "^18.11.18",
"@types/plist": "^3.0.2",
"@types/promise-timeout": "^1.3.0",
"@types/semver": "^7.3.13",
"@types/yauzl": "^2.10.0",
"@typescript-eslint/eslint-plugin": "5.48.0",
"eslint": "8.31.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"husky": "4.3.7",
"lint-staged": "13.1.0",
"parcel": "2.8.2",
"prettier": "2.8.2",
"type-fest": "^3.5.6",
"typedoc": "^0.23.26",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "4.9.4"
},
"engines": {
"node": "~18"
}
}