@stacksjs/registry 0.68.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 ADDED
@@ -0,0 +1,58 @@
1
+ # Stacks Registry
2
+
3
+ Where stacks are defined.
4
+
5
+ ## โ˜˜๏ธ Features
6
+
7
+ - Allows for `buddy add <stack>` to install a stack from the registry
8
+
9
+ ## ๐Ÿค– Usage
10
+
11
+ ```bash
12
+ bun install -d @stacksjs/registry
13
+ ```
14
+
15
+ ```typescript
16
+ import { registry, type Registry } from '@stacksjs/registry'
17
+
18
+ console.log(registry) // the Registry as an object
19
+ ```
20
+
21
+ To view the full documentation, please visit [https://stacksjs.org/path](https://stacksjs.org/path).
22
+
23
+ ## ๐Ÿงช Testing
24
+
25
+ ```bash
26
+ bun test
27
+ ```
28
+
29
+ ## ๐Ÿ“ˆ Changelog
30
+
31
+ Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
32
+
33
+ ## ๐Ÿšœ Contributing
34
+
35
+ Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
36
+
37
+ ## ๐Ÿ Community
38
+
39
+ For help, discussion about best practices, or any other conversation that would benefit from being searchable:
40
+
41
+ [Discussions on GitHub](https://github.com/stacksjs/stacks/discussions)
42
+
43
+ For casual chit-chat with others using this package:
44
+
45
+ [Join the Stacks Discord Server](https://discord.gg/stacksjs)
46
+
47
+ ## ๐Ÿ™๐Ÿผ Credits
48
+
49
+ Many thanks to the following core technologies & people who have contributed to this package:
50
+
51
+ - [Chris Breuer](https://github.com/chrisbbreuer)
52
+ - [All Contributors](../../contributors)
53
+
54
+ ## ๐Ÿ“„ License
55
+
56
+ The MIT License (MIT). Please see [LICENSE](https://github.com/stacksjs/stacks/tree/main/LICENSE.md) for more information.
57
+
58
+ Made with ๐Ÿ’™
@@ -0,0 +1,8 @@
1
+ export declare type Registry = {
2
+ name: string
3
+ url: string
4
+ github: string
5
+ }[]
6
+ export declare const registry: Registry;
7
+
8
+ export default registry;
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // @bun
2
+ var d=[{name:"stacks",url:"stacksjs.org",github:"stacksjs/stacks"}],h=d;export{d as registry,h as default};
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@stacksjs/registry",
3
+ "type": "module",
4
+ "version": "0.68.0",
5
+ "description": "The Stacks Registry.",
6
+ "author": "Chris Breuer",
7
+ "contributors": ["Chris Breuer <chris@stacksjs.org>"],
8
+ "license": "MIT",
9
+ "funding": "https://github.com/sponsors/chrisbbreuer",
10
+ "homepage": "https://github.com/stacksjs/stacks/tree/main/registry/framework/core/registry#readme",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/stacksjs/stacks.git",
14
+ "directory": "./storage/framework/core/registry"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/stacksjs/stacks/issues"
18
+ },
19
+ "keywords": ["registry", "stacks"],
20
+ "exports": {
21
+ ".": {
22
+ "import": "./dist/index.js"
23
+ }
24
+ },
25
+ "module": "dist/index.js",
26
+ "types": "dist/index.d.ts",
27
+ "files": ["README.md", "dist"],
28
+ "scripts": {
29
+ "build": "bun build.ts",
30
+ "typecheck": "bun tsc --noEmit",
31
+ "prepublishOnly": "bun run build"
32
+ },
33
+ "devDependencies": {
34
+ "@stacksjs/development": "0.67.0"
35
+ }
36
+ }