create-agit 0.0.1
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/bin.mjs +5 -0
- package/package.json +18 -0
package/bin.mjs
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Placeholder while the npm lineage is being reset: this version carries no
|
|
3
|
+
// installer on purpose, so it must say where the real one is.
|
|
4
|
+
console.error('create-agit: this placeholder version has no installer — run `npx -y create-agit@latest` after the next AgentGit release.')
|
|
5
|
+
process.exit(1)
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-agit",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Placeholder version with no installer; run npx -y create-agit@latest after the next AgentGit release.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"create-agit": "./bin.mjs"
|
|
9
|
+
},
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=20"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://agent-git.com",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/Einsia/agent-git"
|
|
17
|
+
}
|
|
18
|
+
}
|