-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1020 Bytes
/
package.json
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
{
"name": "@caido/plugin-manifest",
"version": "0.3.0",
"description": "Validation for the plugin manifest",
"author": "Caido Labs Inc. <dev@caido.io>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"generate": "json2ts src/schema.json > src/schema.generated.ts",
"lint": "eslint src/ --fix",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepublish": "pnpm generate"
},
"dependencies": {
"ajv": "^8.17.0"
},
"devDependencies": {
"@caido/eslint-config": "0.0.4",
"@types/node": "22.13.1",
"eslint": "9.20.1",
"json-schema-to-typescript": "15.0.4",
"tsup": "8.3.6",
"typescript": "5.7.3",
"vitest": "3.0.5"
},
"eslint.workingDirectories": [
{
"directory": "js",
"changeProcessCWD": true
}
]
}