-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.27 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.27 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
{
"name": "@caido-community/dev",
"version": "0.1.6",
"description": "Development tools for building Caido plugins",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"bin": {
"caido-dev": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "pnpm build && vitest",
"build": "tsup",
"lint": "eslint --flag unstable_ts_config --fix ./src ./playgrounds"
},
"keywords": [
"caido",
"plugin",
"development",
"cli"
],
"author": "Caido Labs Inc.",
"repository": "https://github.com/caido-community/dev",
"license": "MIT",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"dependencies": {
"@caido/plugin-manifest": "0.3.0",
"chalk": "5.4.1",
"chokidar": "4.0.3",
"commander": "13.0.0",
"express": "5.0.0",
"glob": "11.0.1",
"jiti": "2.4.2",
"jszip": "3.10.1",
"ws": "8.18.0",
"zod": "3.24.1",
"vite": "6.0.7",
"tsup": "8.3.5"
},
"devDependencies": {
"@caido/eslint-config": "0.0.6",
"@types/express": "5.0.0",
"@types/node": "22.10.2",
"@types/ws": "8.5.13",
"eslint": "9.17.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vitest": "3.0.5"
}
}