-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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
{
"name": "@superclaude-org/superflag",
"version": "3.1.5",
"description": "SuperFlag - MCP-based flag system for AI assistants",
"type": "module",
"main": "dist/index.js",
"bin": {
"superflag": "dist/index.js",
"superflag-install": "dist/install.js"
},
"scripts": {
"build": "tsc && node update-version.js",
"watch": "tsc --watch",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperClaude-Org/superflag.git"
},
"keywords": [
"mcp",
"claude",
"ai",
"assistant",
"context",
"flags"
],
"author": "SuperClaude-Org",
"license": "MIT",
"bugs": {
"url": "https://github.com/SuperClaude-Org/superflag/issues"
},
"homepage": "https://github.com/SuperClaude-Org/superflag#readme",
"files": [
"dist",
"hooks",
"flags.yaml",
"SUPERFLAG.md",
"README.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@types/inquirer": "^9.0.9",
"chalk": "^5.3.0",
"inquirer": "^12.9.6",
"js-yaml": "^4.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/yargs": "^17.0.32",
"shx": "^0.3.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}