frida-js
Version:
Pure-JS bindings to control Frida from node.js & browsers.
82 lines (81 loc) • 2.3 kB
JSON
{
"name": "frida-js",
"version": "0.4.0",
"description": "Pure-JS bindings to control Frida from node.js & browsers.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"src/",
"scripts/"
],
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsc",
"prepack": "npm run build",
"pretest": "npm-run-all --parallel pretest:download-frida build",
"pretest:download-frida": "ts-node ./test/download-test-frida.ts",
"test": "npm-run-all test:node test:browser",
"test:node": "mocha -r ts-node/register 'test/**/*.spec.ts'",
"test:browser": "karma start",
"test:browser:dev": "CONTINUOUS_TEST=true npm run test:browser",
"test:browser:debug": "HEADFUL_TEST=true CONTINUOUS_TEST=true npm run test:browser"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/frida-js.git"
},
"keywords": [
"frida",
"pure",
"bindings",
"websocket",
"reverse-engineering",
"instrument",
"instrumentation",
"frida.re"
],
"author": "Tim Perry <tim@httptoolkit.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/httptoolkit/frida-js/issues"
},
"homepage": "https://github.com/httptoolkit/frida-js#readme",
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@types/chai": "^4.3.5",
"@types/long": "^4.0.2",
"@types/mocha": "^10.0.1",
"@types/semver": "^7.3.13",
"@types/ssri": "^7.1.1",
"chai": "^4.3.7",
"cross-fetch": "^3.1.5",
"esbuild": "^0.17.19",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-esbuild": "^2.2.5",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "^0.0.36",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.0",
"semver": "^7.5.0",
"tmp-promise": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@httptoolkit/dbus-native": "^0.1.3",
"@httptoolkit/websocket-stream": "^6.0.1",
"isomorphic-ws": "^4.0.1",
"long": "^4.0.0",
"ssri": "^10.0.4",
"ws": "^8.17.0",
"xz-decompress": "^0.2.1"
}
}