aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com>2021-06-30 09:35:44 +0100
committerGitHub <noreply@github.com>2021-06-30 10:35:44 +0200
commit7da632065f079b887d07b17a63ba1787e4240e69 (patch)
treea136685802e7b38d6b07250d218f99b984a2f639
parent000b16af16bb5cb4e1ea9e4c24c693add6ae4da3 (diff)
downloadafl++-7da632065f079b887d07b17a63ba1787e4240e69.tar.gz
Minor fixes to typescript bindings (#999)
Co-authored-by: Your Name <you@example.com>
-rw-r--r--frida_mode/ts/lib/afl.ts2
-rw-r--r--frida_mode/ts/package.json60
2 files changed, 32 insertions, 30 deletions
diff --git a/frida_mode/ts/lib/afl.ts b/frida_mode/ts/lib/afl.ts
index 6da7fabc..93368dac 100644
--- a/frida_mode/ts/lib/afl.ts
+++ b/frida_mode/ts/lib/afl.ts
@@ -371,3 +371,5 @@ class Afl {
}
}
+
+export { Afl };
diff --git a/frida_mode/ts/package.json b/frida_mode/ts/package.json
index 47b693ed..191eb597 100644
--- a/frida_mode/ts/package.json
+++ b/frida_mode/ts/package.json
@@ -1,32 +1,32 @@
{
- "name": "@worksbutnottested/aflplusplus-frida",
- "version": "1.0.0",
- "description": "AFLplusplus Frida Mode",
- "main": "./dist/frida.js",
- "types": "./dist/frida.d.ts",
- "files": [
- "/dist/"
- ],
- "repository": {
- "type": "git",
- "url": "git@github.com:worksbutnottested/AFLplusplus.git"
- },
- "publishConfig": {
- "cache": "~/.npm",
- "registry": "https://npm.pkg.github.com/@worksbutnottested"
- },
- "scripts": {
- "prepare": "npm run build",
- "build": "tsc",
- "lint": "tslint -p tslint.json"
- },
- "devDependencies": {
- "@types/node": "^14.14.2",
- "typescript": "^4.0.3",
- "typescript-tslint-plugin": "^0.5.5",
- "tslint": "^6.1.3"
- },
- "dependencies": {
- "@types/frida-gum": "^16.2.0"
- }
+ "name": "@worksbutnottested/aflplusplus-frida",
+ "version": "1.0.1",
+ "description": "AFLplusplus Frida Mode",
+ "main": "./dist/afl.js",
+ "types": "./dist/afl.d.ts",
+ "files": [
+ "/dist/"
+ ],
+ "repository": {
+ "type": "git",
+ "url": "git@github.com:worksbutnottested/AFLplusplus.git"
+ },
+ "publishConfig": {
+ "cache": "~/.npm",
+ "registry": "https://npm.pkg.github.com/@worksbutnottested"
+ },
+ "scripts": {
+ "prepare": "npm run build",
+ "build": "tsc",
+ "lint": "tslint -p tslint.json"
+ },
+ "devDependencies": {
+ "@types/node": "^14.14.2",
+ "typescript": "^4.0.3",
+ "typescript-tslint-plugin": "^0.5.5",
+ "tslint": "^6.1.3"
+ },
+ "dependencies": {
+ "@types/frida-gum": "^16.2.0"
}
+}