-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.1 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.1 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
{
"name": "liteagents",
"version": "2.6.0",
"description": "AI development toolkit with 11 specialized agents and 23 commands including live-canvas UI design with click-to-annotate feedback. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
"main": "index.js",
"bin": {
"liteagents": "./installer/cli.js",
"liteag": "./cli.js"
},
"scripts": {
"test": "node tests/run-all-tests.js",
"test-installer": "node tests/installer/integration.test.js",
"install-interactive": "node installer/cli.js",
"uninstall-tool": "node installer/cli.js --uninstall",
"clean": "rm -rf tests/tmp/ && echo 'Cleaned test artifacts'",
"clean:git": "git clean -fdx tests/tmp/",
"validate": "node ./scripts/validate-package.js",
"validate-packages": "node scripts/validate-all-packages.js",
"prepack": "rm -rf packages/*/plugins/*/plugins/*/node_modules",
"prepublishOnly": "npm run clean && npm run validate",
"postinstall": "node postinstall.js"
},
"keywords": [
"claude",
"claude-code",
"opencode",
"ampcode",
"droid",
"plugin",
"installer",
"interactive-installer",
"multi-tool",
"ai-agents",
"software-development",
"agile",
"scrum",
"product-management",
"development-tools",
"workflow-automation",
"pdf",
"docx",
"xlsx",
"pptx",
"document-generation",
"cli",
"variant-system"
],
"author": "hamr0 <avoidaccess@msn.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hamr0/liteagents.git"
},
"bugs": {
"url": "https://github.com/hamr0/liteagents/issues"
},
"homepage": "https://github.com/hamr0/liteagents#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"installer/",
"packages/",
"tools/",
"docs/",
"cli.js",
"index.js",
"postinstall.js",
"README.md",
"QUICK-START.md",
"TROUBLESHOOTING.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {},
"devDependencies": {}
}