coconuts 1.0.0 → 1.0.4

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.
Files changed (3) hide show
  1. package/README.md +41 -0
  2. package/bin.js +4 -0
  3. package/package.json +23 -9
package/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # coconuts
2
+
3
+ The official command-line interface for GAIT - the Agent-Native Source Control Management System.
4
+
5
+ ## Installation
6
+
7
+ Install globally to use the `nut` command:
8
+
9
+ ```bash
10
+ npm install -g coconuts
11
+ ```
12
+
13
+ Or run directly with npx:
14
+
15
+ ```bash
16
+ npx coconuts init
17
+ npx coconuts serve
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ After installation, use the `nut` command:
23
+
24
+ ```bash
25
+ # Initialize a new GAIT project
26
+ nut init
27
+
28
+ # Start the web interface
29
+ nut serve
30
+
31
+ # View all commands
32
+ nut --help
33
+ ```
34
+
35
+ ## Documentation
36
+
37
+ For more information, visit the [GAIT documentation](https://github.com/bluer/gait).
38
+
39
+ ## License
40
+
41
+ MIT
package/bin.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ // Forward execution to @lovelybunch/cli
4
+ import '@lovelybunch/cli/dist/cli.js';
package/package.json CHANGED
@@ -1,12 +1,26 @@
1
1
  {
2
2
  "name": "coconuts",
3
- "version": "1.0.0",
4
- "main": "index.js",
5
- "scripts": {
6
- "test": "echo \"Error: no test specified\" && exit 1"
7
- },
8
- "keywords": [],
9
- "author": "",
10
- "license": "ISC",
11
- "description": ""
3
+ "version": "1.0.4",
4
+ "description": "Command-line interface wrapper for GAIT",
5
+ "type": "module",
6
+ "bin": {
7
+ "nut": "./bin.js"
8
+ },
9
+ "files": [
10
+ "bin.js",
11
+ "README.md"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/bluer/gait.git"
16
+ },
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "dependencies": {
21
+ "@lovelybunch/cli": "^1.0.3"
22
+ },
23
+ "engines": {
24
+ "node": ">=18.0.0"
25
+ }
12
26
  }