-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 990 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 990 Bytes
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
{
"name": "frida-cshell",
"description": "Frida CShell",
"version": "1.9.9",
"keywords": [
"frida-gum"
],
"license": "wxWindows Library Licence, Version 3.1",
"repository": {
"type": "git",
"url": "git+https://github.com/WorksButNotTested/frida-cshell.git"
},
"authors": [
"WorksButNotTested"
],
"bin": {
"frida-cshell": "./frida-cshell"
},
"scripts": {
"prepare": "npm run version && npm run build && npm run package && npm run copy",
"build": "frida-compile src/entrypoint.ts -o frida-cshell.js -c",
"lint": "eslint src",
"pretty": "npx prettier --write src",
"version": "node version.js",
"package": "./package",
"copy": "cp .cshellrc ~/.cshellrc"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/frida-gum": "^19.0",
"eslint": "^9.28.0",
"frida-compile": "^19.0.4",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"replace": "^1.2.2",
"typescript-eslint": "^8.34.0"
}
}