-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.03 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "pocwriter",
"displayName": "pocwriter",
"description": "This is the vscode extension designed for pocwriter.",
"version": "0.0.1",
"publisher": "Esonhugh",
"engines": {
"vscode": "^1.101.0"
},
"license": "MIT",
"icon": "images/icon.png",
"extensionKind": [
"workspace"
],
"categories": [
"Snippets"
],
"activationEvents": [
"onLanguage:python",
"onLanguage:c",
"onLanguage:csharp",
"onLanguage:javascript",
"onLanguage:powershell"
],
"main": "./dist/extension.js",
"contributes": {
"snippets": [
{
"language": "python",
"path": "./src/crypto/crypto.json"
},
{
"language": "python",
"path": "./src/crypto/python.json"
},
{
"language": "python",
"path": "./src/misc/argsparser.json"
},
{
"language": "python",
"path": "./src/misc/python.json"
},
{
"language": "python",
"path": "./src/misc/threading.json"
},
{
"language": "csharp",
"path": "./src/pwn/cssharp.json"
},
{
"language": "python",
"path": "./src/pwn/interact.json"
},
{
"language": "powershell",
"path": "./src/pwn/powershell.json"
},
{
"language": "python",
"path": "./src/pwn/pwntools.json"
},
{
"language": "javascript",
"path": "./src/re/frida.json"
},
{
"language": "javascript",
"path": "./src/re/javascript.json"
},
{
"language": "python",
"path": "./src/web/requests.json"
},
{
"language": "python",
"path": "./src/web/socket.json"
}
]
},
"scripts": {
"issue-helper": "ts-node ./src/helper.ts poc.json",
"check-snippets-contribute": "ts-node ./src/checker.ts",
"snippets-list": "ts-node ./src/status.ts",
"vscode:prepublish": "pnpm run package",
"vscode:publish": "vsce package --no-dependencies --allow-missing-repository",
"build": "pnpm check-snippets-contribute && pnpm snippets-list && pnpm vscode:publish",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/http-string-parser": "^0.0.33",
"@types/mocha": "^10.0.10",
"@types/node": "~20.19.1",
"@types/node-fetch": "^2.6.13",
"@types/vscode": "^1.101.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.5.0",
"eslint": "^9.29.0",
"ts-loader": "^9.5.2",
"ts-morph": "^26.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
}
}