-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 978 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 978 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
39
40
41
42
{
"name": "@caido-community/create-plugin",
"version": "0.5.0",
"description": "Initializer for Caido plugins",
"author": {
"name": "Caido Labs Inc.",
"email": "dev@caido.io",
"url": "https://caido.io"
},
"homepage": "https://github.com/caido-community/create-plugin",
"bin": {
"create-plugin": "./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caido-community/create-plugin.git"
},
"scripts": {
"build": "unbuild",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src --fix --max-warnings 0",
"test": "vitest run"
},
"files": [
"dist",
"templates",
"templates/**/.gitignore"
],
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@caido/eslint-config": "0.5.0",
"@inquirer/prompts": "7.0.0",
"knip": "5.70.2",
"typescript": "5.6.3",
"unbuild": "2.0.0",
"vitest": "4.1.2"
}
}