@stacksjs/registry 0.70.23 → 0.70.26

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 CHANGED
@@ -19,7 +19,7 @@ import { registry } from '@stacksjs/registry'
19
19
  console.log(registry) // the Registry as an object
20
20
  ```
21
21
 
22
- To view the full documentation, please visit [https://stacksjs.org/path](https://stacksjs.org/path).
22
+ To view the full documentation, please visit [<https://stacksjs.com/pat>h](https://stacksjs.com/path).
23
23
 
24
24
  ## 🧪 Testing
25
25
 
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // @bun
2
- var d=[{name:"stacks",url:"stacksjs.org",github:"stacksjs/stacks"}],h=d;export{d as registry,h as default};
2
+ var t=[{name:"stacks",url:"stacksjs.com",github:"stacksjs/stacks"}],e=t;export{t as registry,e as default};
@@ -0,0 +1,4 @@
1
+ import type { StackExtensionRegistry } from '@stacksjs/types';
2
+ export declare const registry: Registry;
3
+ export type Registry = StackExtensionRegistry;
4
+ export default registry;
package/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "@stacksjs/registry",
3
3
  "type": "module",
4
- "version": "0.70.23",
4
+ "version": "0.70.26",
5
5
  "description": "The Stacks Registry.",
6
6
  "author": "Chris Breuer",
7
- "contributors": ["Chris Breuer <chris@stacksjs.org>"],
7
+ "contributors": [
8
+ "Chris Breuer <chris@stacksjs.com>"
9
+ ],
8
10
  "license": "MIT",
9
11
  "funding": "https://github.com/sponsors/chrisbbreuer",
10
12
  "homepage": "https://github.com/stacksjs/stacks/tree/main/registry/framework/core/registry#readme",
@@ -16,21 +18,28 @@
16
18
  "bugs": {
17
19
  "url": "https://github.com/stacksjs/stacks/issues"
18
20
  },
19
- "keywords": ["registry", "stacks"],
21
+ "keywords": [
22
+ "registry",
23
+ "stacks"
24
+ ],
20
25
  "exports": {
21
26
  ".": {
27
+ "bun": "./src/index.ts",
22
28
  "import": "./dist/index.js"
23
29
  }
24
30
  },
25
31
  "module": "dist/index.js",
26
32
  "types": "dist/index.d.ts",
27
- "files": ["README.md", "dist"],
33
+ "files": [
34
+ "README.md",
35
+ "dist"
36
+ ],
28
37
  "scripts": {
29
38
  "build": "bun build.ts",
30
39
  "typecheck": "bun tsc --noEmit",
31
40
  "prepublishOnly": "bun run build"
32
41
  },
33
42
  "devDependencies": {
34
- "@stacksjs/development": "0.70.22"
43
+ "better-dx": "^0.2.12"
35
44
  }
36
45
  }
package/dist/index.d.ts DELETED
@@ -1,15 +0,0 @@
1
- export declare type Registry = {
2
- name: string
3
- url: string
4
- github: string
5
- }[]
6
-
7
- export const registry: Registry = [
8
- {
9
- name: 'stacks',
10
- url: 'stacksjs.org',
11
- github: 'stacksjs/stacks',
12
- },
13
- ]
14
-
15
- export default registry