-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.91 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.91 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
{
"name": "@paulduvall/claude-dev-toolkit",
"version": "0.0.1-alpha.12",
"description": "Custom commands toolkit for Claude Code - streamline your development workflow",
"author": "Paul Duvall",
"license": "MIT",
"keywords": [
"claude-code",
"claude",
"ai",
"development",
"automation",
"commands"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PaulDuvall/claude-code.git"
},
"bugs": {
"url": "https://github.com/PaulDuvall/claude-code/issues"
},
"homepage": "https://github.com/PaulDuvall/claude-code#readme",
"bin": {
"claude-commands": "bin/claude-commands"
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"test": "node scripts/run-all-tests.js",
"test:report": "node scripts/generate-test-report.js",
"test:comprehensive": "node tests/test_all_suites.js",
"test:req007": "node tests/test_req_007_interactive_setup_wizard.js",
"test:req009": "node tests/test_req_009_configuration_template_application.js",
"test:req018": "node tests/test_req_018_security_hook_installation.js",
"test:req020": "node tests/test_req_020_installation_failure_recovery.js",
"test:commands": "node tests/test_command_validation.js",
"test:workflow": "node tests/test_core_workflow_commands.js",
"test:security": "node tests/test_security_commands.js",
"test:quality": "node tests/test_quality_commands.js",
"test:git": "node tests/test_git_commands.js",
"test:ux": "node tests/test_user_experience.js",
"test:validation": "node tests/test_validation_system.js",
"test:subagents": "node tests/test_subagents_command.js",
"test:subagents-async": "node tests/test_subagents_async.js",
"test:config": "node tests/test_config_command.js",
"test:ux-quick-start": "node tests/test_ux_quick_start_guide.js",
"test:npm-completeness": "node tests/test_npm_package_completeness.js",
"test:install": "scripts/publishing/test-package-install.sh",
"test:manual": "scripts/publishing/manual-test-suite.sh",
"publish:local": "scripts/publishing/setup-local-registry.sh",
"publish:private": "scripts/publishing/publish-private.sh",
"lint": "eslint lib/**/*.js bin/**/*.js",
"validate": "node scripts/validate.js",
"version": "echo 'Remember to update README.md with new version details!'",
"prepublishOnly": "npm ci && npm test && npm run validate"
},
"dependencies": {
"commander": "^9.0.0",
"inquirer": "^8.2.7",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"jest": "^29.0.0",
"typescript": "^5.0.0",
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"bin/",
"lib/",
"commands/",
"templates/",
"hooks/",
"subagents/",
"scripts/postinstall.js",
"scripts/validate.js",
"tsconfig.json",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}