ahoybuoy 0.2.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.
Files changed (3) hide show
  1. package/README.md +22 -0
  2. package/bin.js +2 -0
  3. package/package.json +31 -0
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # ahoybuoy
2
+
3
+ Design drift detection for the AI era.
4
+
5
+ ## Quick Start
6
+
7
+ ```bash
8
+ npx ahoybuoy begin
9
+ ```
10
+
11
+ Or install globally:
12
+
13
+ ```bash
14
+ npm install -g ahoybuoy
15
+ buoy begin
16
+ ```
17
+
18
+ ## About
19
+
20
+ This is the official CLI for [Buoy](https://buoy.design) - catch design system drift before it ships.
21
+
22
+ See the [full documentation](https://github.com/ahoybuoy/buoy) for more details.
package/bin.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import '@buoy-design/cli/dist/bin.js';
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "ahoybuoy",
3
+ "version": "0.2.0",
4
+ "description": "Design drift detection for the AI era",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Buoy <hello@buoy.design>",
8
+ "homepage": "https://buoy.design",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/ahoybuoy/buoy.git",
12
+ "directory": "apps/ahoybuoy"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/ahoybuoy/buoy/issues"
16
+ },
17
+ "keywords": [
18
+ "buoy",
19
+ "design-system",
20
+ "drift-detection",
21
+ "cli",
22
+ "design-tokens"
23
+ ],
24
+ "bin": {
25
+ "ahoybuoy": "./bin.js",
26
+ "buoy": "./bin.js"
27
+ },
28
+ "dependencies": {
29
+ "@buoy-design/cli": "^0.2.0"
30
+ }
31
+ }