@norma-team/cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +65 -0
- package/dist/index.js +7580 -0
- package/dist/index.js.map +1 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@norma-team/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Norma — provider-agnostic orchestration for AI agent pipelines (CLI).",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Marcelo Fortunato",
|
|
8
|
+
"homepage": "https://github.com/marceloF5/norma#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/marceloF5/norma.git",
|
|
12
|
+
"directory": "apps/cli"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/marceloF5/norma/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"ai-agents",
|
|
19
|
+
"orchestration",
|
|
20
|
+
"agent-orchestration",
|
|
21
|
+
"linear",
|
|
22
|
+
"jira",
|
|
23
|
+
"github-issues",
|
|
24
|
+
"claude-code",
|
|
25
|
+
"opencode",
|
|
26
|
+
"workflow",
|
|
27
|
+
"cli"
|
|
28
|
+
],
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20"
|
|
31
|
+
},
|
|
32
|
+
"bin": {
|
|
33
|
+
"norma": "dist/index.js"
|
|
34
|
+
},
|
|
35
|
+
"files": ["dist", "README.md"],
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "tsup",
|
|
41
|
+
"dev": "tsx src/index.ts",
|
|
42
|
+
"test": "vitest run --passWithNoTests",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"lint": "biome check src",
|
|
45
|
+
"clean": "rm -rf dist .turbo",
|
|
46
|
+
"prepack": "tsup"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@clack/prompts": "0.9.1",
|
|
50
|
+
"commander": "12.1.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@norma/adapter-github": "workspace:*",
|
|
54
|
+
"@norma/adapter-jira": "workspace:*",
|
|
55
|
+
"@norma/adapter-linear": "workspace:*",
|
|
56
|
+
"@norma/agent-runtime": "workspace:*",
|
|
57
|
+
"@norma/agents": "workspace:*",
|
|
58
|
+
"@norma/config": "workspace:*",
|
|
59
|
+
"@norma/context": "workspace:*",
|
|
60
|
+
"@norma/core": "workspace:*",
|
|
61
|
+
"@norma/orchestrator": "workspace:*",
|
|
62
|
+
"@norma/server": "workspace:*",
|
|
63
|
+
"@norma/tracker": "workspace:*",
|
|
64
|
+
"@norma/tsconfig": "workspace:*",
|
|
65
|
+
"@norma/tsup-config": "workspace:*",
|
|
66
|
+
"@types/node": "22.10.5",
|
|
67
|
+
"tsup": "8.3.5",
|
|
68
|
+
"tsx": "4.19.2",
|
|
69
|
+
"typescript": "5.7.3",
|
|
70
|
+
"vitest": "2.1.8"
|
|
71
|
+
}
|
|
72
|
+
}
|