-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "create-claude-plugin",
"version": "1.0.0",
"description": "Scaffold a Claude Code plugin with interactive prompts",
"bin": {
"create-claude-plugin": "./index.js"
},
"type": "module",
"license": "MIT",
"author": "Lucas Pizzo",
"repository": {
"type": "git",
"url": "https://github.com/lucaspizzo/create-claude-plugin"
},
"homepage": "https://github.com/lucaspizzo/create-claude-plugin#readme",
"bugs": {
"url": "https://github.com/lucaspizzo/create-claude-plugin/issues"
},
"files": [
"index.js",
"lib/"
],
"scripts": {
"test": "node --test test/cli.test.js test/scaffold.test.js",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"release": "semantic-release"
},
"keywords": [
"claude",
"claude-code",
"plugin",
"scaffold",
"create",
"cli",
"anthropic"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^25.0.3"
}
}